1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UnityのPrefabをSerializeFieldに設定したときのメモリの状態

Posted at

内容

Prefabに関連付いているAssetはいつロードされるのかという調査。

環境

Unity5.4.0p4
Windows10
実行デバイスはAndroid Nexsus5X

実装

SpriteRendererのSpriteにTextureを設定したGameObjectをPrefabにする。

下記のような何もしないMonoBehaviourをアタッチした状態で
Prefabを関連付けるのと関連付けないのでテストした。

using UnityEngine;

public class Loader : MonoBehaviour
{
    [SerializeField]
    GameObject _prefab;

    void Awake()
    {
    }

    void Update()
    {
    }
}

結果

Prefabに関連付いているアセットもロードされていた。

メモリ1.png

メモリ2.png

読み込むリソースが違うステージなどを作る場合は
別々のシーンを作った方がよさそうですね。

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?