SetPropertyFloat() public abstract method

public abstract SetPropertyFloat ( string strPropertyName, double fValue ) : bool
strPropertyName string
fValue double
return bool
Ejemplo n.º 1
0
        public override bool SetPropertyFloat(NFGUID self, string strPropertyName, float fValue)
        {
            if (mhtObject.ContainsKey(self))
            {
                NFIObject xGameObject = (NFIObject)mhtObject[self];
                return(xGameObject.SetPropertyFloat(strPropertyName, fValue));
            }

            return(false);
        }