QueryPropertyVector3() public abstract method

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

            return(new NFVector3());
        }