请阅读这两篇文章:
- http://docs.unity3d.com/Manual/script-Serialization.html
- http://docs.unity3d.com/Manual/class-ScriptableObject.html
谈谈你对 Scriptable Object 的理解.请在项目中使用 Scriptable Object 制作这么一份数据:
Hero {
"attack": { "type": "int", "default": "20" },
"magic": { "type": "int", "default": "30" },
"maxHP": { "type": "int", "default": "100" },
"maxMP": { "type": "int", "default": "100" },
"icon": { "type": "Texture2D", "default": "avatar.png" }
}