using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Lesson19 : MonoBehaviour
{
    // Start is called before the first frame update
    void Start()
    {
        #region 知识点一 NGUI 事件响应 播放音效
        //PlaySound 脚本
        #endregion

        #region 知识点二 NGUI控件和键盘按键绑定
        //KeyBinding 脚本
        #endregion

        #region 知识点三 PC端 tab键快捷切换选中
        //KeyNavigation 脚本
        #endregion

        #region 知识点四 语言本地化
        //Localization脚本
        //1.在Resources下创建一个txt文件 命名必须为Localization
        //2.配置文件
        //3.给想要切换文字的Label对象下挂载Localize 关联Key
        //4.给用于切换语言的下拉列表下添加脚本LanguageSelection
        #endregion
    }

    // Update is called once per frame
    void Update()
    {
        
    }
}

不会做游戏!