view src/test/csharp/jp.ac.u-ryukyu.ie.cr/jungle-network/operations/NetworkAppendChildOperationTest.cs @ 14:e07d8f241630

add Comment.
author Kazuma
date Sun, 23 Oct 2016 13:37:01 +0900
parents 4c8932dad7b2
children
line wrap: on
line source

using UnityEngine;
using System.Collections;
using MsgPack;

// http://qiita.com/snaka/items/8da9f89deeef17b1923a
// message pack refarence URL.
public class NetworkAppendChildOperationTest : MonoBehaviour {

	// Use this for initialization
	void Start () {
		NetworkAppendChildAtOperation op = new NetworkAppendChildAtOperation(1);
		ObjectPacker pack = new ObjectPacker();
		byte[] value = pack.Pack(op);

		// unpackage
		ObjectPacker unpack = new ObjectPacker();
		NetworkAppendChildAtOperation mOp = unpack.Unpack<NetworkAppendChildAtOperation>(value);
		print(mOp.getPosition()); // add position 1 , get what number?
	}
}