Can't compile for windows but works on flash - FIXED

Fixed!

It seems that casting was the problem.

int:InteractionCallback

cast (int, Body) - broke the windows build.
int.int1.castBody - works

Thanks for sharing! If this happens in the future, add a reply to your original post, instead of editing it. That way, in case anyone hits the same errors that you did, they should be able to do an internet search and help find the same solution you did :slight_smile:

Not a bug.

int is not a body, it’s an InteractionCallback.

int.int1 is an Interactor, which can be a body. cast(int.int1, Body) should work.