设置语言
<h1>设置语言</h1>
<p><code>setLanguage(string)</code></p>
<h3>成员</h3>
<table>
<thead>
<tr>
<th>参数名</th>
<th>必选</th>
<th>类型</th>
<th>说明</th>
<th>可选项</th>
</tr>
</thead>
<tbody>
<tr>
<td>language</td>
<td>是</td>
<td>string</td>
<td>语言类型</td>
<td>'zh-CN'中文,'en-US'英文</td>
</tr>
</tbody>
</table>
<h2>示例代码</h2>
<pre><code class="language-javascript">// 定义语言类型
var language = &quot;zh-CN&quot;; // 可选值: 'zh-CN' 或 'en-US'
// 创建应用配置
var application2dConfig = new BCore2DFast.Application.Application2D.Application2DConfig();
application2dConfig.language = language; // 设置语言类型
// 初始化应用
var application2d = new BCore2DFast.Application.Application2D(application2dConfig);
// 设置当前语言
application2d.setLanguage(language);</code></pre>
<h2>使用说明</h2>
<ol>
<li>根据需要设置 <code>language</code> 参数为 'zh-CN' 或 'en-US'。</li>
<li>使用 <code>setLanguage</code> 方法来更新应用的当前界面语言。</li>
<li>在创建应用实例时,将 <code>language</code> 配置传递给构造函数。</li>
</ol>