QueryRecordVector3() public abstract method

public abstract QueryRecordVector3 ( string strRecordName, int nRow, int nCol ) : NFVector3
strRecordName string
nRow int
nCol int
return NFVector3
Beispiel #1
0
        public override NFVector3 QueryRecordVector3(NFGUID self, string strRecordName, int nRow, int nCol)
        {
            if (mhtObject.ContainsKey(self))
            {
                NFIObject xGameObject = (NFIObject)mhtObject[self];
                return(xGameObject.QueryRecordVector3(strRecordName, nRow, nCol));
            }

            return(new NFVector3());
        }