comparison src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/transaction/DefaultJungleTreeEditor.cs @ 6:4d08270a61c8

fix
author Kazuma
date Tue, 19 Jul 2016 16:47:43 +0900
parents dec15de2c6ff
children
comparison
equal deleted inserted replaced
5:0428c8888abf 6:4d08270a61c8
63 public Either<Error,JungleTreeEditor> deleteChildAt(NodePath _path, int _pos) { 63 public Either<Error,JungleTreeEditor> deleteChildAt(NodePath _path, int _pos) {
64 DeleteChildAt deleteChildAt = new DeleteChildAt(_pos); 64 DeleteChildAt deleteChildAt = new DeleteChildAt(_pos);
65 return _edit(_path,deleteChildAt); 65 return _edit(_path,deleteChildAt);
66 } 66 }
67 67
68 public Either<Error, JungleTreeEditor> putAttribute(NodePath _path, string _key, GameObject _value) { 68 public Either<Error, JungleTreeEditor> putAttribute(NodePath _path, string _key, byte _value) {
69 PutAttribute putAttribute = new PutAttribute (_key, _value); 69 PutAttribute putAttribute = new PutAttribute (_key, _value);
70 return _edit (_path, putAttribute); 70 return _edit (_path, putAttribute);
71 } 71 }
72 72
73 public Either<Error, JungleTreeEditor> deleteAttribute(NodePath _path, string _key) { 73 public Either<Error, JungleTreeEditor> deleteAttribute(NodePath _path, string _key) {