Makes all Godot API's methods Lower Case

This commit is contained in:
Indah Sylvia 2017-08-07 17:17:31 +07:00
parent 7e4970214c
commit 5ae78fdf6a
112 changed files with 430 additions and 430 deletions

View file

@ -38,7 +38,7 @@
#include "os/memory.h"
Thread::ID ThreadPosix::get_ID() const {
Thread::ID ThreadPosix::get_id() const {
return id;
}
@ -75,7 +75,7 @@ Thread *ThreadPosix::create_func_posix(ThreadCreateCallback p_callback, void *p_
return tr;
}
Thread::ID ThreadPosix::get_thread_ID_func_posix() {
Thread::ID ThreadPosix::get_thread_id_func_posix() {
return (ID)pthread_self();
}
@ -122,7 +122,7 @@ Error ThreadPosix::set_name_func_posix(const String &p_name) {
void ThreadPosix::make_default() {
create_func = create_func_posix;
get_thread_ID_func = get_thread_ID_func_posix;
get_thread_id_func = get_thread_id_func_posix;
wait_to_finish_func = wait_to_finish_func_posix;
set_name_func = set_name_func_posix;
}