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]);
}
}
Error CS7009: The `arguments' magic variable is not currently supported in PlayScript (CS7009)