• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

c#与Unity3d中的序列化

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

圣典中对于Unity3D的序列化介绍很容易和C#的序列化介绍搞混,做个笔记,方便以后查找。

很多资料算是拾人牙慧.

 

Inherits from Attribute

The Serializable attribute lets you embed a class with sub properties in the inspector.

Serializable(序列化)属性让你植入一个类用替代内容在Inspector(检视面板)

You can use this to display variables in the inspector similar to how a Vector3 shows up in the inspector. The name and a triangle to expand its properties. To do this you need create a class that derives from System.Object and give it the Serializable attribute. In JavaScript the Serializable attribute is implicit and not necessary.

你可以用这个去显示变量在inspector(检视面板)类似于将一个Vector3(3维向量)显示在inspector(检视面板)。这个名字和一个三角来扩展他的内容。去做这个你需要创建一个起源于System.Object的类并且给他Serializable属性。在JavaScript这个Serializable属性是隐含的,不必要的。

class Test extends System.Object {
	var p = 5;
	var c = Color.white;
}
var test = Test ();
// C# Example
[System.Serializable]
class Test
{
	public int p = 5;
	public Color c = Color.white;
}
 
  You Can Do Like that:
  本质上不过就是用一个类来代替一些字段让编辑器编辑罢了
 
  未完待续……

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap