You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Style: clang-format: Disable AllowShortCaseLabelsOnASingleLine
Part of #33027.
This commit is contained in:
@@ -173,8 +173,12 @@ Timer::TimerProcessMode Timer::get_timer_process_mode() const {
|
||||
|
||||
void Timer::_set_process(bool p_process, bool p_force) {
|
||||
switch (timer_process_mode) {
|
||||
case TIMER_PROCESS_PHYSICS: set_physics_process_internal(p_process && !paused); break;
|
||||
case TIMER_PROCESS_IDLE: set_process_internal(p_process && !paused); break;
|
||||
case TIMER_PROCESS_PHYSICS:
|
||||
set_physics_process_internal(p_process && !paused);
|
||||
break;
|
||||
case TIMER_PROCESS_IDLE:
|
||||
set_process_internal(p_process && !paused);
|
||||
break;
|
||||
}
|
||||
processing = p_process;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user