Advertisement
Guest User

Untitled

a guest
Aug 1st, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.43 KB | None | 0 0
  1. AK.CSS = {}
  2.  
  3. do
  4.  
  5.     local CSS = AK.CSS
  6.    
  7.     CSS.Container_Pause = {
  8.         switch_call = function()
  9.             AK.GamePause = true
  10.             CS.Get("Fade").modelRenderer:SetOpacity(0.65)
  11.         end;
  12.         zindex = 15;
  13.     }
  14.    
  15.     CSS.Container_Accueil = {
  16.         switch_call = function()
  17.             AK.GamePause = false
  18.             CS.Get("Fade").modelRenderer:SetOpacity(0)
  19.         end;
  20.     }
  21.    
  22.     CSS.Fade = {
  23.         zindex = 10;
  24.         opacity = 0;
  25.     }
  26.    
  27.     CSS.Ressources = {
  28.         resize = true;
  29.         right = 0.5;
  30.         top = 0;
  31.     }
  32.    
  33.     -- > Build menu
  34.     CSS.BuildMenu = {
  35.         left = -19;
  36.         top = 0;
  37.         resize = true;
  38.         anim_pos = {19};
  39.         anim_speed = 0.5;
  40.         anim_resize = true;
  41.     }
  42.    
  43.     -- > Waves model
  44.     CSS.Waves = {
  45.         top = 0;
  46.         resize = true;
  47.     }
  48.    
  49.     CSS.Waves_time = {
  50.         top = 0;
  51.         resize = true;
  52.         margin = "9 0";
  53.     }
  54.    
  55.     -- > Bottom icon
  56.     CSS.Bottom_icon = {
  57.         bottom = 0.5;
  58.         right = 0.5;
  59.         resize = true;
  60.     }
  61.    
  62.     CSS.Pause = {
  63.         onclick = {
  64.             switch = "Pause Accueil";
  65.         };
  66.     }
  67.    
  68.     CSS.Leave = {
  69.         onclick = {
  70.             exit = {true,function() end};
  71.         };
  72.     }
  73.    
  74.     CSS.Option = {
  75.         onclick = {
  76.             switch = "Option Accueil";
  77.         };
  78.     }
  79.  
  80.  
  81. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement