Code: Select all
sendObj.putIntArray("posint", Arrays.asList(100000,200000,300000));I've been looking all around and can't see an example of sending a pre-exisintg int[] using putIntArray.
I have been able to send a SFSArray using:
Code: Select all
obj.PutSFSArrayI've gotten this to work in As3 but not in C# (Unity)
So, if I have variable
pSychRecording
That is either an Array or preferably a list, how do I convert this line so it will work?
Code: Select all
SFSObject obj = new SFSObject();
obj.PutIntArray("m", pSychRecording);