跳到主要内容

更新国家列表(UpdateCountryList)

AndroidiOSWindows
如果您使用的是 Unity 引擎,请参见 Unity SDK 的 UpdateCountryList

设置国家列表选择页面需要展示和不需要展示的国家或地区。
这个接口只适用于 V1.07 及以上,如果是 V1.07 以前的版本,请参见 LEVEL INFINITE PASS
其中 999 国家码代表其他国家地区。

函数定义

UFUNCTION(BlueprintCallable, Category = "LevelInfinite")
static void UpdateCountryList(const TArray<FString>& allowList,const TArray<FString>& blockList);

入参说明

参数类型说明
allowListTArray<FString> 允许被展示出来的国家或地区列表。
用户国家或地区码,引用 ISO 3166-1 标准 ;例如 "400" 代表约旦。
blockListTArray<FString> 不允许被展示出来的国家或地区列表。
用户国家或地区码,引用 ISO 3166-1 标准 ;例如 "400" 代表约旦。

代码示例

TArray<FString> allowList;
allowList.Add(TEXT("496"));
allowList.Add(TEXT("400"));
TArray<FString> blockList;
blockList.Add(TEXT("400"))

ULevelInfiniteAPI::UpdateCountryList(allowList,blockList);