Version: 2017.1
public static bool GetBool (string key, bool defaultValue= false);

描述

Returns the value corresponding to key in the remote settings if it exists.

如果不存在,则返回 /defaultValue/。如果不提供默认值,将返回 false。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { print(RemoteSettings.GetBool("enableBoss")); } }