Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks
Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
This commit is contained in:
@@ -33,11 +33,8 @@
|
||||
#include "core/engine.h"
|
||||
|
||||
void Timer::_notification(int p_what) {
|
||||
|
||||
switch (p_what) {
|
||||
|
||||
case NOTIFICATION_READY: {
|
||||
|
||||
if (autostart) {
|
||||
#ifdef TOOLS_ENABLED
|
||||
if (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() && (get_tree()->get_edited_scene_root() == this || get_tree()->get_edited_scene_root()->is_a_parent_of(this)))
|
||||
@@ -84,30 +81,24 @@ void Timer::set_wait_time(float p_time) {
|
||||
wait_time = p_time;
|
||||
}
|
||||
float Timer::get_wait_time() const {
|
||||
|
||||
return wait_time;
|
||||
}
|
||||
|
||||
void Timer::set_one_shot(bool p_one_shot) {
|
||||
|
||||
one_shot = p_one_shot;
|
||||
}
|
||||
bool Timer::is_one_shot() const {
|
||||
|
||||
return one_shot;
|
||||
}
|
||||
|
||||
void Timer::set_autostart(bool p_start) {
|
||||
|
||||
autostart = p_start;
|
||||
}
|
||||
bool Timer::has_autostart() const {
|
||||
|
||||
return autostart;
|
||||
}
|
||||
|
||||
void Timer::start(float p_time) {
|
||||
|
||||
ERR_FAIL_COND_MSG(!is_inside_tree(), "Timer was not added to the SceneTree. Either add it or set autostart to true.");
|
||||
|
||||
if (p_time > 0) {
|
||||
@@ -140,12 +131,10 @@ bool Timer::is_stopped() const {
|
||||
}
|
||||
|
||||
float Timer::get_time_left() const {
|
||||
|
||||
return time_left > 0 ? time_left : 0;
|
||||
}
|
||||
|
||||
void Timer::set_timer_process_mode(TimerProcessMode p_mode) {
|
||||
|
||||
if (timer_process_mode == p_mode)
|
||||
return;
|
||||
|
||||
@@ -167,7 +156,6 @@ void Timer::set_timer_process_mode(TimerProcessMode p_mode) {
|
||||
}
|
||||
|
||||
Timer::TimerProcessMode Timer::get_timer_process_mode() const {
|
||||
|
||||
return timer_process_mode;
|
||||
}
|
||||
|
||||
@@ -184,7 +172,6 @@ void Timer::_set_process(bool p_process, bool p_force) {
|
||||
}
|
||||
|
||||
void Timer::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("set_wait_time", "time_sec"), &Timer::set_wait_time);
|
||||
ClassDB::bind_method(D_METHOD("get_wait_time"), &Timer::get_wait_time);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user