Hello,
I'm very new to Construct. I have a working websocket server doing basic communications with a basic Construct setup. I can send text and binary from Construct to the server, and I can send text and binary from the server to Construct. What I'm trying to do is actually use the binary data I receive in Construct to change things in Construct.
My first test is to move a sprite with binary data received from a websocket message. I'm sending a float and trying to use the value to offset the sprite Y.
Sprite.Y + BinaryData.GetFloat32(0)
This doesn't work- the sprite stays still. I am also sending the binary message back to the server, where it reads like this:
b'25.36458396911621'
I can share the Construct file if anyone is interested in seeing it.
Does anyone have any insight for a noob? Thank you