c# 與 Unity3d 中的序列化

來源:互聯網
上載者:User

標籤:style   blog   http   java   color   2014   

聖典中對於Unity3D的序列化介紹很容易和C#的序列化介紹搞混,做個筆記,方便以後尋找。

很多資料算是拾人牙慧.

 

一、Serializable 序列化

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:  本質上不過就是用一個類來代替一些欄位讓編輯器編輯罷了    未完待續……
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.