Error 29

operand expected

This error often occures when you have forgotten to terminate your expression.

Xpressionist expects an operator that defines the operation between values. Arguments for functions are divided by commas.

This does not work:

a = sin( );

You must define an operand in this case an argument for the function.

a = sin( Plane.Pitch_X );

Xpressionist 3