PlayMakerArrayListProxy.Set C# (CSharp) 메소드

Set() 공개 메소드

public Set ( int index, object value, string type ) : void
index int
value object
type string
리턴 void
    public void Set(int index,object value,string type)
    {
        //	Debug.Log("Set"+value);
        arrayList[index] = value;

        dispatchEvent(setEvent,index,"int");
    }