Example #1
0
 def initParams(cls):
     return [
         InitParam('Type, Name', SLOT_TYPE.STR, 'Herbivorous.Deer',
                   EDITOR_TYPE.COMPLEX_KEY_SELECTOR,
                   AnimalComplexKeySelect.animals),
         InitParam('Count', SLOT_TYPE.INT, 0)
     ]
Example #2
0
 def initParams(cls):
     return [
         InitParam(
             'UDO names', SLOT_TYPE.STR,
             buildStrKeysValue('single name', 'multiple names',
                               'any names'), EDITOR_TYPE.STR_KEY_SELECTOR),
         InitParam('UDO type', SLOT_TYPE.STR,
                   buildStrKeysValue(*cls._UDOTypes),
                   EDITOR_TYPE.STR_KEY_SELECTOR)
     ]
Example #3
0
 def initParams(cls):
     return [
         InitParam('Component property name', SLOT_TYPE.STR,
                   buildStrKeysValue('globalGoal'),
                   EDITOR_TYPE.STR_KEY_SELECTOR),
         InitParam(
             'Value Types', SLOT_TYPE.STR,
             buildStrKeysValue(SLOT_TYPE.STR, SLOT_TYPE.FLOAT,
                               SLOT_TYPE.INT), EDITOR_TYPE.STR_KEY_SELECTOR)
     ]
Example #4
0
 def initParams(cls):
     return [
         InitParam(
             'EquipmentName', SLOT_TYPE.STR,
             buildStrKeysValue(
                 'large_repairkit_battle_royale', 'regenerationKit',
                 'arcade_minefield_battle_royale', 'healPoint', 'selfBuff',
                 'trappoint', 'afterburning_battle_royale', 'repairpoint',
                 'arcade_bomber_battle_royale', 'spawn_kamikaze',
                 'arcade_smoke_battle_royale_with_damage', 'berserker',
                 'fireCircle', 'adaptationHealthRestore', 'corrodingShot',
                 'clingBrander', 'thunderStrike', 'shotPassion'),
             EDITOR_TYPE.STR_KEY_SELECTOR)
     ]
Example #5
0
 def initParams(cls):
     return [InitParam('value [0, 100]', SLOT_TYPE.INT, 0, None, [0, 100])]
Example #6
0
 def initParams(cls):
     return [InitParam('Names', SLOT_TYPE.STR, buildStrKeysValue(*cls.convert.keys()), EDITOR_TYPE.STR_KEY_SELECTOR)]
Example #7
0
 def initParams(cls):
     return [InitParam('outCount', SLOT_TYPE.INT, 1)]
Example #8
0
 def initParams(cls):
     return [InitParam('amount of test IDs', SLOT_TYPE.STR, buildStrKeysValue('single id', 'array of IDs'), EDITOR_TYPE.STR_KEY_SELECTOR)]
 def initParams(cls):
     return [
         InitParam('root', SLOT_TYPE.STR, 'wot'),
         InitParam('ext', SLOT_TYPE.STR, 'xml')
     ]