1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
local g_registeredEffectUpdates = { }
-- Numerically indexed array of registered controls.
-- Non-numerically indexed table for which the keys are the registered controls
-- and the values are their corresponding parameter tables.
-- Non-numerically indexed for which the keys are the valid ControlType values (CT_ prefixed) that this effect can manage.
end
end
end
if not parameterTable then
-- The arguments specified were invalid.
return false
end
-- Control is already registered; just update the parameters.
return true
end
internalassert ( false , string . format ( "%s:RegisterControl: Invalid ControlType: %d" , self : GetEffectName ( ) , controlType ) )
return false
end
return true
end
return false
end
return true
end
if not g_registeredEffectUpdates [ effectName ] then
g_registeredEffectUpdates [ effectName ] = true
end
end
g_registeredEffectUpdates [ effectName ] = nil
end
end
-- Abstract Method Declarations
|