Thanks Ashley
I never used the binary Data it looks quite different than normal plugins that we use in construct like Arrays, dictionary, etc.... I was experimenting trying to learn how it works so definitely I'm must be doing something wrong or I understood how it works wrong.
The test I was trying to do:
-Set size of 400
-Then Loop 400 times and:
Set at Index = LoopIndex >>>> Value = LoopIndex
After when I retrieve the values it should match (Index & Value) but after the 250 it gets messed up
Capx: https://www.dropbox.com/s/v9hn56pmpt6gqbw/binarydata_forumtest.c3p?dl=0
Perhaps you are reaching the limit of a byte, which is 255. You can work around that simply by writing a larger value, like an int32.
I tried it but it doesn't write anything if I use int32, when I loop to extract the values they all show = 0 definitely I'm doing something wrong
I read the manual many times but I still can get how it works or when I reach
the limit of a byte, which is 255
Are there any examples that we can use? I didn't find any on the construct 3 demos
Thanks