Advertisement
Guest User

Untitled

a guest
Sep 7th, 2019
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 2.32 KB | None | 0 0
  1. span class="re5"> class RscTitles {
  2.  
  3.     class Default {
  4.       idd                          = -1;
  5.       fadein                       = 0;
  6.       fadeout                      = 1;
  7.       duration                     = 0;
  8.     };
  9.  
  10.     class parent1 {
  11.         idd                         = 1000000;
  12.         movingEnable                = 0;
  13.         enableSimulation            = 1;
  14.         enableDisplay               = 1;
  15.         duration                    = 99999;
  16.         fadein                      = 0;
  17.         fadeout                     = 2;
  18.         name                        = "parent1";
  19.         onLoad                      = "with uiNameSpace do { parent1 = _this select 0 }";
  20.    
  21.         class controls {
  22.  
  23.             class structuredText {
  24.                 access              = 0;
  25.                 type                = 13;
  26.                 idc                 = 99991;
  27.                 style               = 0x00;
  28.                 lineSpacing         = 1;
  29.                 x                   = 0.300 * safezoneW + safezoneX;
  30.                 y                   = 0.000 * safezoneH + safezoneY;
  31.                 w                   = 0.400 * safezoneW;
  32.                 h                   = 0.025 * safezoneH;
  33.                 size                = 0.020;
  34.                 colorBackground[]   = {0,0,0,0};
  35.                 colorText[]         = {1,1,1,1};
  36.                 text                = "";
  37.                 font                = "PuristaSemiBold";
  38.                    
  39.                 class Attributes {
  40.                     font        = "PuristaSemiBold";
  41.                     color       = "#FFFFFF";
  42.                     align       = "CENTER";
  43.                     valign      = "CENTER";
  44.                     shadow      = false;
  45.                     shadowColor = "#000000";
  46.                     underline   = false;
  47.                     size        = "2";
  48.                 };
  49.             };
  50.         };
  51.     };
  52.  
  53.     class childClass1 : parent1 {
  54.         idd                         = 1000000;
  55.         movingEnable                = 0;
  56.         enableSimulation            = 1;
  57.         name                        = "childClass1";
  58.         onLoad                      = "with uiNameSpace do { childClass1 = _this select 0 }";
  59.        
  60.         class controls {
  61.            
  62.             class structuredText {
  63.                 idc = 99992;
  64.                 colorText[] = {1,0,0,1};
  65.             };
  66.         };
  67.     };
  68.  
  69. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement