public GooBinaryMesh(GLexMesh glexMesh)
    {
        mGlexMesh = glexMesh;
        mMesh = mGlexMesh.Mesh;

        _submeshProxies = new GooBinarySubMeshProxy[mMesh.subMeshCount];
        for (int i = 0; i < _submeshProxies.Length; ++i) {
            _submeshProxies[i] = new GooBinarySubMeshProxy(this, i);
        }
    }
예제 #2
0
    public GooBinaryMesh(GLexMesh glexMesh)
    {
        mGlexMesh = glexMesh;
        mMesh     = mGlexMesh.Mesh;

        _submeshProxies = new GooBinarySubMeshProxy[mMesh.subMeshCount];
        for (int i = 0; i < _submeshProxies.Length; ++i)
        {
            _submeshProxies[i] = new GooBinarySubMeshProxy(this, i);
        }
    }