Version: 2021.3
言語: 日本語

FormerlySerializedAsAttribute

class in UnityEngine.Serialization

マニュアルに切り替える

説明

シリアライズされた値を失わないようにフィールド名のリネームをしたい場合、この属性を使用します。

以下のようなクラスの場合

using UnityEngine;

public class MyMonster : MonoBehaviour { public int hitpoints; }

And you would now like to rename this field. You can achieve that by using this attribute:

using UnityEngine;
using UnityEngine.Serialization;

public class MyMonster : MonoBehaviour { [FormerlySerializedAs("hitpoints")] public int health; }

Unity serializes public variables by default. To serialize private variables, use the SerializeField attribute. For more information, see the Script Serialization documentation.

変数

oldNameリネーム前のフィールドの名前

コンストラクタ

FormerlySerializedAsAttribute
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961