Ok, I\'ve written myself a simple DeviceCapabilites class to be able to check if the device is a phone or tablet etc.
But I need to be able to say that if the user i
Something like this?
stage.autoOrients = false; if(YourDeviceCapsClass.isTablet) stage.setOrientation(StageOrientation.ROTATED_LEFT); else stage.setOrientation(StageOrientation.DEFAULT);