gamecircle.Whispersync.GameDataReturnToRoot

Type function
Library gamecircle.*
Return value None
Revision Release 2022.3683
Keywords Leaderboard, Overlay

Overview

Whispersync will jump back to the top of the GameData tree, which is the "Root" object.

Syntax

gamecircle.Whispersync.GameDataReturnToRoot()

Examples

local gamecircle = require("plugin.gamecircle")  
gamecircle.Init(false, false, true)  
gamecircle.Whispersync.GameDataStepDownTo("Level 1")  
print("Level 1 Path: " .. gamecircle.Whispersync.CurrentDataMapGetPath())  
gamecircle.Whispersync.GameDataStepDownTo("Treasures")  
gamecircle.Whispersync.GameDataStepUp()  
gamecircle.Whispersync.GameDataStepDownTo("Secrets")  
print("Secrets Path: " .. gamecircle.Whispersync.CurrentDataGetPath())  
gamecircle.Whispersync.GameDataStepUp()  
print("Level 1 Children: ")  
local keys = gamecircle.Whispersync.CurrentDataMapChildKeys()  
for i,key in ipairs(keys)  
    print("-" .. key)  
end  
gamecircle.Whispersync.GameDataReturnToRoot()