Wombat.MamaMsg.updateF32 C# (CSharp) Method

updateF32() public method

Update the value of an existing float field. If the field does not exist it is added.
public updateF32 ( string name, ushort fid, float val ) : void
name string
fid ushort
val float
return void
        public void updateF32(
			string name, 
			ushort fid,
			float val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_updateF32(nativeHandle, name, fid,val);
            CheckResultCode(code);
        }
MamaMsg