Advertisement
X39

Untitled

X39
May 30th, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. class XLib {
  2. class modProperties {
  3. class modBase {
  4. scope = 0;
  5.  
  6. name = "test";
  7. class properties {
  8. class propertyBase {
  9. display = "";
  10. image = "";
  11. type = -1;
  12. valueType = "";
  13.  
  14. setFunction = "profileNamespace setVariable [_this select 0, _this select 1]";
  15. getFunction = "profileNamespace getVariable (_this select 0)";
  16. validationCode = "true";
  17. description = "NA";
  18. class values {
  19. };
  20. };
  21. class propertyKeyBase: propertyBase {
  22. display = "test option key";
  23. type = TYPE_KEY;
  24. description = "1test1<br />1test2";
  25. };
  26. class propertyValueBase: propertyBase {
  27. display = "test option value";
  28. type = TYPE_VALUE;
  29. valueType = "SCALAR";
  30. description = "2test1<br />2test2";
  31. };
  32. class propertyComboboxBase: propertyBase {
  33. display = "test option value";
  34. type = TYPE_COMBOBOX;
  35. description = "2test1<br />2test2";
  36. class values {
  37. class value1 {
  38. display = "test1";
  39. valueType = "SCALAR";
  40. value = 1;
  41. };
  42. class value2 {
  43. display = "test2";
  44. valueType = "SCALAR";
  45. value = 1;
  46. };
  47. class value3 {
  48. display = "test3";
  49. valueType = "SCALAR";
  50. value = 1;
  51. };
  52. };
  53. };
  54. };
  55. };
  56. };
  57. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement