言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Serializable

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Description

Serializable 属性によりインスペクタ上でクラスにサブプロパティを埋め込むことを許可します。

これを使用してインスペクタ上で Vector3 を表示するのと同様の方法で変数をできます。 名前と三角記号が表示されプロパティを展開できます。 このためには 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;
}