NCMBに座標を送る
急ぎなのでメモ ボタンで追加できる
public void addBtn(){
NCMBObject posObj = new NCMBObject ("posObj");
//DicAdd test
posObj .Add("x", "3.2");
posObj .Add("y", "1.0");
posObj .Add("z", "0.2");
posObj.SaveAsync ((NCMBException e) => {
if (e != null) {
//エラー処理
} else {
//成功時の処理
}
});
}
