public Camera hideUI;
public static IEnumerator TakeScreenshot(MonoBehaviour mono )
{
if( Application.platform == RuntimePlatform.IPhonePlayer )
{
int previousMask = hideUI.cullingMask;
hideUI.cullingMask = 0;
//take screenshot code from prime31
hideUI.cullingMask = previousMask;
}