QueryPropertyFloat() 공개 추상적인 메소드

public abstract QueryPropertyFloat ( string strPropertyName ) : double
strPropertyName string
리턴 double
예제 #1
0
        public override float QueryPropertyFloat(NFGUID self, string strPropertyName)
        {
            if (mhtObject.ContainsKey(self))
            {
                NFIObject xGameObject = (NFIObject)mhtObject[self];
                return(xGameObject.QueryPropertyFloat(strPropertyName));
            }

            return(0.0f);
        }