No there is a function called SetActorTickEnabled you should use.
The frame-time is not constant even if the timer is set to be called at a constant rate. Similar to how physics are calculated it might be called several times in one frame if tick is slower than the timer interval.
Things that are rendered should use Tick and compensate for the tick variance using delta-time in the calculations.