gamecircle.Whispersync.GetLatestString

类型 函数
gamecircle.*
返回值 SyncableString
版本 发行版 2024.3703
关键字 最新、SyncableString、Whispersync

概述

返回分配给 key 值的最新字符串。

语法

local syncString = gamecircle.Whispersync.GetLatestString( key )
key (必需)

字符串. 用于访问特定最新字符串的键。

示例

local latestNumKey = "myFirstLatestString"  
local gamecircle = require("plugin.gamecircle")  
gamecircle.Init(false, false, true)  
gamecircle.Whispersync.SetLatestString(latestNumKey, "A")
gamecircle.Whispersync.SetLatestString(latestNumKey, "B") 
gamecircle.Whispersync.SetLatestString(latestNumKey, "C")
gamecircle.Whispersync.SetLatestString(latestNumKey, "D") 
gamecircle.Whispersync.SetLatestString(latestNumKey, "E") 
print("The Latest String is: " .. gamecircle.Whispersync.GetLatestString(latestNumKey, "INT").value)  
print("These are all the Latest String values stored under the current GameData set of Whispersync.")  
local keys = gamecircle.Whispersync.GetLatestStringKeys()  
for i,key in ipairs(keys) do   
    print("-" .. key)  
end