mouseEventsInvertX and mouseEventsInvertY settings in newly created MainActivity files and instead, show mouseEventsEnabled. Default values in AndroidHarness (false for both invertX and invertY) match Desktop mouse.

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10391 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
iwg..om 2013-02-10 23:08:00 +00:00
parent b7ae718b64
commit b475a8e9c9

View File

@ -420,10 +420,8 @@ public class AndroidSdkTool {
+ " eglConfigVerboseLogging = false;\n" + " eglConfigVerboseLogging = false;\n"
+ " // Choose screen orientation\n" + " // Choose screen orientation\n"
+ " screenOrientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;\n" + " screenOrientation = ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE;\n"
+ " // Invert the MouseEvents X (default = true)\n" + " // Enable MouseEvents being generated from TouchEvents (default = true)\n"
+ " mouseEventsInvertX = true;\n" + " mouseEventsEnabled = true;\n"
+ " // Invert the MouseEvents Y (default = true)\n"
+ " mouseEventsInvertY = true;\n"
+ " }\n" + " }\n"
+ " \n" + " \n"
+ "}\n"; + "}\n";