Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class XLib {
- class modProperties {
- class modBase {
- scope = 0;
- name = "test";
- class properties {
- class propertyBase {
- display = "";
- image = "";
- type = -1;
- valueType = "";
- setFunction = "profileNamespace setVariable [_this select 0, _this select 1]";
- getFunction = "profileNamespace getVariable (_this select 0)";
- validationCode = "true";
- description = "NA";
- class values {
- };
- };
- class propertyKeyBase: propertyBase {
- display = "test option key";
- type = TYPE_KEY;
- description = "1test1<br />1test2";
- };
- class propertyValueBase: propertyBase {
- display = "test option value";
- type = TYPE_VALUE;
- valueType = "SCALAR";
- description = "2test1<br />2test2";
- };
- class propertyComboboxBase: propertyBase {
- display = "test option value";
- type = TYPE_COMBOBOX;
- description = "2test1<br />2test2";
- class values {
- class value1 {
- display = "test1";
- valueType = "SCALAR";
- value = 1;
- };
- class value2 {
- display = "test2";
- valueType = "SCALAR";
- value = 1;
- };
- class value3 {
- display = "test3";
- valueType = "SCALAR";
- value = 1;
- };
- };
- };
- };
- };
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement