1

Unity で外部設定ファイルを使用してカメラを作成しようとしています。現時点では、そのファイルが読み込まれており、その値は次のように保存されています。

    public struct Entry
{
    public System.Object value;
    public Type type;
}

public class HV_ReadSettingsFile : MonoBehaviour

{
    Entry _screenEntry;
    Entry _cameraEntry;


public Dictionary<string, Entry> cameraDictionary = new Dictionary<string, Entry>();
public List<HV_Camera> cameraList = new List<HV_Camera>();
public List<HV_Screen> screenList = new List<HV_Screen>();




// Use this for initialization
void Start()
{
    StoreXMLValues();

}

// Update is called once per frame
void Update()
{
}

void StoreXMLValues()
{
    var xdoc = XDocument.Load(@"C:\\Test.xml");
    var screens = xdoc.Descendants("Screen");
    var cameras = xdoc.Descendants("Camera");


    foreach (var screen in screens)
    {
        HV_Screen _screen = new HV_Screen();
        _screen.Name = (string)screen.Element("Name").Attribute("Name");
        _screen.Tag = (string)screen.Element("ScreenTag").Attribute("Tag");
        _screen.XPOS = (string)screen.Element("LocalPosition").Attribute("X");
        _screen.YPOS = (string)screen.Element("LocalPosition").Attribute("Y");
        _screen.ZPOS = (string)screen.Element("LocalPosition").Attribute("Z");
        _screen.Width = (string)screen.Element("Width").Attribute("Width");
        _screen.Height = (string)screen.Element("Height").Attribute("Height");
        _screen.YAW = (string)screen.Element("Orientation").Attribute("YAW");
        _screen.PITCH = (string)screen.Element("Orientation").Attribute("PITCH");
        _screen.ROLL = (string)screen.Element("Orientation").Attribute("ROLL");



        //Debug.Log("Screen name: " + _screen.Name);
        //Debug.Log("Screen tag: " + _screen.Tag);
        //Debug.Log("Screen xpos: " + _screen.XPOS);
        //Debug.Log("Screen ypos: " + _screen.YPOS);
        //Debug.Log("Screen zpos: " + _screen.ZPOS);
        //Debug.Log("Screen width: " + _screen.Width);
        //Debug.Log("Screen height: " + _screen.Height);
        //Debug.Log("Screen Yaw: " + _screen.YAW);
        //Debug.Log("Screen Pitch: " + _screen.PITCH);
        //Debug.Log("Screen Roll: " + _screen.ROLL);
        screenList.Add(_screen);
    }

    foreach (var camera in cameras)
    {
        HV_Camera _camera = new HV_Camera();
        _camera.Name = (string)camera.Element("Name").Attribute("Name");
        _camera.Tag = (string)camera.Element("CameraTag").Attribute("Tag");
        _camera.XPOS = (string)camera.Element("LocalPosition").Attribute("X");
        _camera.YPOS = (string)camera.Element("LocalPosition").Attribute("Y");
        _camera.ZPOS = (string)camera.Element("LocalPosition").Attribute("Z");
        _camera.YAW = (string)camera.Element("Orientation").Attribute("Yaw");
        _camera.PITCH = (string)camera.Element("Orientation").Attribute("Pitch");
        _camera.ROLL = (string)camera.Element("Orientation").Attribute("Roll");
        _camera.Near = (string)camera.Element("Near").Attribute("Near");
        _camera.Far = (string)camera.Element("Far").Attribute("Far");
        _camera.FOV = (string)camera.Element("FOV").Attribute("FOV");
        _camera.AspectRatio = (string)camera.Element("AspectRatio").Attribute("AspectRatio");
        _camera.ScreenDistance = (string)camera.Element("ScreenDistance").Attribute("ScreenDistance");

       // Debug.Log("Camera name: " + _camera.Name);
        cameraList.Add(_camera);

    }

    //Debug.Log("Camera Count: " + cameraList.Count);

    //Debug.Log("Screen Count: " + screenList.Count);
}

public List<HV_Camera> GetCameraList()
{
   // Debug.Log("Got list");
    return cameraList;
}

コメントアウトされた Debug.Logs でこれをテストしたところ、設定ファイルが読み込まれ、値が保存されていることがわかりました。

私の HV_Camera クラスでは、cameraList のデータにアクセスしようとしています。これは私が持っているものです:

     HV_ReadSettingsFile settings;
        List<HV_Camera> testCamera = new List<HV_Camera>();

void Start () 
{
   settings = gameObject.GetComponent<HV_ReadSettingsFile>();
 GetList();
   CreateCamera();
}

// Update is called once per frame
void Update () 
{

}


public void GetList()
{
    testCamera = settings.GetCameraList();


}

public void CreateCamera()
{

    for (int i = 0; i < testCamera.Count; i++)
    {
        Debug.Log("I am camera");
    }


}

さて、その for ループで、データが渡されているかどうかを確認したいだけです。うまくいけば、「I am a camera」が 4 回出力されるはずです。しかし、そうではありません。欠けているものや正しく行っていないものはありますか?

4

1 に答える 1

0

問題はスクリプトの実行順序にある​​と思われます。すべてのロジックはコンポーネントのメソッド内にあり、が前に実行Startされる保証はありません。HV_ReadSettingsFile.Start()HV_Camera.Start()

ほとんどHV_Cameraの場合、設定リストが入力される前に最初に実行されます。Unity IDE でスクリプトの優先順位を設定して、これが起こらないようにすることは可能ですが、これは開発者の観点からは少し直感的ではありません。

または、コードを再構築して、コードが正しい順序で実行されるようにすることもできます。たとえば、パブリック メソッドを作成した場合、両方のコンポーネントHV_ReadSettingsFile.EnsureFileIsRead()からそのメソッドを呼び出すことができます。Start()メソッドはフラグを使用して、既に実行されているかどうかを記録する必要があります。これにより、コードが必要なコンポーネントに対して 1 回だけ実行されるようになります。

于 2013-06-20T10:21:33.167 に答える