PlayMakerArrayListProxy.Set C# (CSharp) Method

Set() public method

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

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