Wombat.MamaMsg.updateF32 C# (CSharp) 메소드

updateF32() 공개 메소드

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
리턴 void
        public void updateF32(
			string name, 
			ushort fid,
			float val)
        {
            EnsurePeerCreated();
            int code = NativeMethods.mamaMsg_updateF32(nativeHandle, name, fid,val);
            CheckResultCode(code);
        }
MamaMsg