Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. application =
  2. {
  3.         content =
  4.         {
  5.                 width = 480,
  6.                 height = 800,
  7.                 scale = "zoomStretch",
  8.                 fps = 60,
  9.                 antialias = true,
  10.                 audioPlayFrequency = 22050
  11.         },
  12. }
  13.  
  14.  
  15.  
  16.  
  17. settings =
  18. {
  19.  
  20.     orientation =
  21.     {
  22.         default = "Landscape",
  23.         supported =
  24.         {
  25.         "Landscape",
  26.         },
  27.                    
  28.     },
  29.     android =
  30.     {
  31.                 installLocation="preferExternal"
  32.     },
  33.         androidPermissions =
  34.     {
  35.             "android.permission.INTERNET",
  36.             "android.permission.ACCESS_NETWORK_STATE"
  37.     },
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement