You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
-Support for changing fonts
-Detect when free() might crash the project and throw error -fixed 2D Bounce in physics (3d still broken) -renamed “on_top” property to “behind_parent”, which makes more sense, old on_top remains there for compatibility but is invisible. -large amount of fixes
This commit is contained in:
@@ -333,6 +333,12 @@ Error OS_Unix::kill(const ProcessID& p_pid) {
|
||||
return ret?ERR_INVALID_PARAMETER:OK;
|
||||
}
|
||||
|
||||
int OS_Unix::get_process_ID() const {
|
||||
|
||||
return getpid();
|
||||
};
|
||||
|
||||
|
||||
bool OS_Unix::has_environment(const String& p_var) const {
|
||||
|
||||
return getenv(p_var.utf8().get_data())!=NULL;
|
||||
|
||||
Reference in New Issue
Block a user