Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-23 | Implement UDP listen bind address | Fabio Alessandrelli | |
2017-01-23 | Implement TCP Server bind address | Fabio Alessandrelli | |
2017-01-23 | IP_Address can now be a wildcard (not a valid IP, used for binding) | Fabio Alessandrelli | |
2017-01-23 | Convert validity checks of IP_Address to is_valid method. | Fabio Alessandrelli | |
2017-01-18 | Some changes in the header so Godot3 compiles again on Windows. | BastiaanOlij | |
2017-01-17 | updated method_ptrcall.h to use 3.0 naming | karroffel | |
2017-01-16 | Merge pull request #7560 from volzhs/issue-7555 | Rémi Verschelde | |
Fix crash when creating new project | |||
2017-01-16 | Merge pull request #7532 from tagcup/pcg_prng | Rémi Verschelde | |
Replace the existing PRNG (Xorshift31) with (minimal) PCG-32. | |||
2017-01-17 | Fix crash when creating new project | volzhs | |
2017-01-16 | Fix compile errors related to audio on OSX | BastiaanOlij | |
2017-01-16 | Style: Various fixes to play nice with clang-format | Rémi Verschelde | |
2017-01-16 | Style: Fix statements ending with ';;' | Rémi Verschelde | |
2017-01-16 | Style: Keep long lines for now | Rémi Verschelde | |
clang-format does not play well with tab-aligned multiline statements... Some more research will be needed if we want to set a column limit. | |||
2017-01-16 | Style: No break before list brace | Rémi Verschelde | |
clang-format does not handle that well *at all*. For the reference, found the relevant pieces of code with: `ag "=[ "$'\t'"]?"$'\n'"[ "$'\t'"]?{" --ignore=thirdparty` | |||
2017-01-16 | Style: Cleanups, added headers, renamed files | Rémi Verschelde | |
Made sure files in core/ and tools/ have a proper Godot license header when written by us. Also renamed aabb.{cpp,h} and object_type_db.{cpp,h} to rect3.{cpp,h} and class_db.{cpp,h} respectively. Also added a proper header to core/io/base64.{c,h} after clarifying the licensing with the original author (public domain). | |||
2017-01-15 | Replace the existing PRNG (Xorshift31) with (minimal) PCG (XSH-RR variant ↵ | Ferenc Arn | |
with 32-bit output, 64-bit state). PCG is better than many alternatives by many metrics (see www.pcg-random.org) including statistical quality with good speed. | |||
2017-01-15 | Oops! Audio engine has vanished :D | Juan Linietsky | |
2017-01-15 | Style: Cosmetic fixes to play nice with clang-format | Rémi Verschelde | |
2017-01-15 | Add missing map.h include in color defs | Rémi Verschelde | |
2017-01-15 | Fix error while JSON::parse with empty string | Geequlim | |
2017-01-14 | no more errors related to missing GlobalConfig::Get (or so I hope) | Juan Linietsky | |
2017-01-15 | Merge pull request #7127 from BastiaanOlij/ios_meters | Rémi Verschelde | |
Core motion implementation for iPhone (Accelerometer/Gyro/Magnetometer support) | |||
2017-01-14 | MethodBind: Make sure header order is kept | Rémi Verschelde | |
When clang-format sorts includes alphabetically, MethodBind breaks. Trying to move the object.h include upward in method_bind.h does not seem to fix the problem, this needs investigation. | |||
2017-01-14 | Merge pull request #7525 from neikeq/pr-plus_file | Rémi Verschelde | |
String: plus_file(String) no longer adds a root | |||
2017-01-14 | Fix _Directory::get_current_drive error condition | Wilhem Barbier | |
2017-01-14 | String: plus_file(String) no longer adds a root | Ignacio Etcheverry | |
2017-01-14 | Merge pull request #7524 from neikeq/pr-dir-getcurdrive | Rémi Verschelde | |
Directory: Bind get_current_drive() method | |||
2017-01-14 | Directory: Bind get_current_drive() method | Ignacio Etcheverry | |
2017-01-14 | Merge pull request #7010 from AlexHolly/format-string2 | Juan Linietsky | |
advanced string format | |||
2017-01-14 | removed duplicated functions in class hierarchy that were bound more than once | Juan Linietsky | |
added a check to detect this case in the future | |||
2017-01-14 | Style: Fix whole-line commented code | Rémi Verschelde | |
They do not play well with clang-format which aligns the `//` part with the rest of the code block, thus producing badly indented commented code. | |||
2017-01-14 | Unexpose the video mode API, will be completely removed when multi-window ↵ | Juan Linietsky | |
support is implemented. | |||
2017-01-14 | Fixed dir access return value, changed it to Error like all other funcs | Juan Linietsky | |
2017-01-14 | UDP.set_send_address to UDP.set_dest_address | Juan Linietsky | |
2017-01-14 | rename String.extension() -> String.get_extension() / String.basename() -> ↵ | Juan Linietsky | |
String.get_basename() | |||
2017-01-13 | Vector2.get_aspect() renamed to Vector2.aspect() to keep consistent method ↵ | Juan Linietsky | |
naming | |||
2017-01-13 | rename Input.get_mouse_speed() to Input.get_last_mouse_speed() | Juan Linietsky | |
2017-01-13 | Replace Engine version API by preexisting OS one | Rémi Verschelde | |
It outputs a single Dictionary with all relevant information as keys, that will less bloat the documentation and provide all details in one function call. | |||
2017-01-13 | Created new Engine singleton, and moved engine related OS functions to it. | Juan Linietsky | |
2017-01-12 | made math functions inlnie | Juan Linietsky | |
2017-01-12 | Added support for getting gravity vector from iOS | BastiaanOlij | |
2017-01-12 | Made InputEvent use floating point coordinates. | Juan Linietsky | |
2017-01-11 | More efficient iteration syntax, and range() is converted behind the scenes ↵ | Juan Linietsky | |
to it. | |||
2017-01-11 | Proper inheritance checking when requesting theem resources | Juan Linietsky | |
2017-01-11 | Added a BACK notification besides QUIT, so they go in separate channels. | Juan Linietsky | |
2017-01-11 | using VariantParser to parse engine.cfg | Juan Linietsky | |
2017-01-11 | Both Array and Dictionary are always in shared mode (removed copy on write). | Juan Linietsky | |
2017-01-11 | Merge pull request #7093 from bojidar-bg/named-colors | Rémi Verschelde | |
Add named colors to GDScript/Visual Script/core. | |||
2017-01-11 | Type renames: | Juan Linietsky | |
Matrix32 -> Transform2D Matrix3 -> Basis AABB -> Rect3 RawArray -> PoolByteArray IntArray -> PoolIntArray FloatArray -> PoolFloatArray Vector2Array -> PoolVector2Array Vector3Array -> PoolVector3Array ColorArray -> PoolColorArray | |||
2017-01-10 | Merge pull request #7426 from m4nu3lf/bugfix/physics | Juan Linietsky | |
Fixed inertia tensor computation and center of mass |