Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.96 KB | None | 0 0
  1. local PerformanceEnhancements = {}
  2. PerformanceEnhancements.Trees = {
  3.     [9] = { -- Graphics Quality 9 and below:
  4.         MobilePhone = {
  5.             {TreeType = "TopBackTrees"}; -- Removes +1436 Parts
  6.         };
  7.     };
  8.    
  9.     [8] = { -- Graphics Quality 8 and below:
  10.         MobilePhone = {
  11.             {TreeType = "TopSideTrees"}; -- Removes +1236 Parts
  12.         };
  13.        
  14.         MobileTablet = {
  15.             {TreeType = "TopBackTrees"}; -- Removes +1436 Parts
  16.         };
  17.        
  18.         ConsoleAndPC = {
  19.             {TreeType = "TopBackTrees", RemoveHalf = true}; -- Removes +718 Parts
  20.         };
  21.     };
  22.    
  23.     [7] = { -- Graphics Quality 7 and below:
  24.         MobilePhone = {
  25.             {TreeType = "TopEnemyTrees"}; -- Removes +2244 Parts
  26.         };
  27.        
  28.         MobileTablet = {
  29.             {TreeType = "TopSideTrees"}; -- Removes +1236 Parts
  30.         };
  31.        
  32.         ConsoleAndPC = {
  33.             {TreeType = "TopSideTrees", RemoveHalf = true}; -- Removes +618 Parts
  34.         };
  35.     };
  36.    
  37.     [6] = { -- Graphics Quality 6 and below:
  38.         MobileTablet = {
  39.             {TreeType = "TopEnemyTrees"}; -- Removes +2244 Parts
  40.         };
  41.        
  42.         ConsoleAndPC = {
  43.             {TreeType = "TopEnemyTrees", RemoveHalf = true}; -- Removes +1122 Parts
  44.         };
  45.     };
  46.    
  47.     [5] = { -- Graphics Quality 5 and below:
  48.         ConsoleAndPC = {
  49.             {TreeType = "TopBackTrees", RemoveOtherHalf = true}; -- Removes +718 Parts
  50.         };
  51.     };
  52.    
  53.     [4] = { -- Graphics Quality 4 and below:
  54.         MobilePhone = {
  55.             {TreeType = "BackTree", OnlyTrunkDetails = true} -- Removes +880 Parts
  56.         };
  57.        
  58.         MobileTablet = {
  59.             {TreeType = "BackTree", OnlyTrunkDetails = true} -- Removes +880 Parts
  60.         };
  61.        
  62.         ConsoleAndPC = {
  63.             {TreeType = "TopSideTrees", RemoveOtherHalf = true}; -- Removes +618 Parts
  64.         };
  65.     };
  66.    
  67.     [3] = { -- Graphics Quality 3 and below:
  68.         MobilePhone = {
  69.             {TreeType = "HillTree", OnlyTrunkDetails = true} -- Removes +552 Parts
  70.         };
  71.        
  72.         MobileTablet = {
  73.             {TreeType = "HillTree", OnlyTrunkDetails = true} -- Removes +552 Parts
  74.         };
  75.        
  76.         ConsoleAndPC = {
  77.             {TreeType = "TopEnemyTrees", RemoveOtherHalf = true}; -- Removes +1122 Parts
  78.         };
  79.     };
  80. }
  81.  
  82. return PerformanceEnhancements
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement