comparison src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/store/transformer/PutAttribute.cs @ 7:02b2ab7bffe6

fix
author Kazuma
date Tue, 27 Sep 2016 18:36:05 +0900
parents dec15de2c6ff
children
comparison
equal deleted inserted replaced
5:0428c8888abf 7:02b2ab7bffe6
1 using UnityEngine; 1 using UnityEngine;
2 using System.Collections; 2 using System.Collections;
3 3
4 public class PutAttribute : NodeEditor { 4 public class PutAttribute : NodeEditor {
5 private string key; 5 private string key;
6 private GameObject value; 6 private byte[] value;
7 7
8 public PutAttribute(string _key,GameObject _value) 8 public PutAttribute(string _key, byte[] _value)
9 { 9 {
10 key = _key; 10 key = _key;
11 value = _value; 11 value = _value;
12 } 12 }
13 13