We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error CS7009: The `arguments' magic variable is not currently supported in PlayScript (CS7009)
/** Enqueues a new touch our mouse event with the given properties. */ public function enqueue(touchID:int, phase:String, globalX:Number, globalY:Number, pressure:Number=1.0, width:Number=1.0, height:Number=1.0):void { mQueue.unshift(arguments); // multitouch simulation (only with mouse) if (mCtrlDown && simulateMultitouch && touchID == 0) { mTouchMarker.moveMarker(globalX, globalY, mShiftDown); mQueue.unshift([1, phase, mTouchMarker.mockX, mTouchMarker.mockY]); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Error CS7009: The `arguments' magic variable is not currently supported in PlayScript (CS7009)
The text was updated successfully, but these errors were encountered: