aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_script.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-01-10Detect bits when building with MinGWIgnacio Etcheverry1-1/+1
2017-01-10FileSystemDock: Collapse folders by default, add context menu with "Expand ↵lonesurvivor2-2/+55
all" / "Collapse all" option.
2017-01-10Few small fixes so tools=no and target=release compilesBastiaanOlij4-5/+13
2017-01-10Remove deprecated Vector2.floorf methodEmmanuel Leblond2-12/+0
2017-01-10Removed the set_child_rect() in AcceptDialog. AcceptDialog now works as a ↵Juan Linietsky48-101/+92
container!
2017-01-10Groundbreaking!! Godot resources can now be flagged to be local to the scene ↵Juan Linietsky21-95/+481
being edited! This means that each time this scene is instanced, the resource will be unique! As such, thanks to this, the following features were implemented: -ButtonGroup is no longer a control, it's now a resource local to the scene -ViewportTexture can be created from the editor and set to any object, making ViewportSprite and other kind of nodes obsolete!
2017-01-09Issue template: warn about known unstabilityRémi Verschelde2-10/+19
2017-01-09-Translation text will change automatically for in-game buttons, labels, ↵Juan Linietsky10-31/+72
poups when translation is changed. -Added a NOTIFICATION_TRANSLATION_CHANGED for controls that need custom code -Sorry, editor will not update automatically because it uses a different translatio method.
2017-01-09-All types have editable script now in propertiesJuan Linietsky20-27/+64
-Changed clip to a property in Control which can be set by the user
2017-01-09Fix modulate property bind to Colorvolzhs1-2/+2
2017-01-09Windows: Workaround missing includes in MinGW-w64 < 4Rémi Verschelde1-1/+13
The MinGW-w64 version we have on our Travis build environment (Ubuntu 12.04, mingw-w64 2.0.1, gcc 4.6) is old and has some missing includes in the dependencies of the `tcpmib.h` header [0] [1] [2]. Those were not triggered before 6323779596dea0db7f58afef7d3d3d5588ef20cb probably due to conflicting WINVER definitions which prevented triggering the code specific to >= 0x0600 (Vista). We ensure it won't be triggered by defining the _WIN32_WINNT macro to Windows XP compatibility.
2017-01-09OSX: Revert back to kHIDUsage_GD_JoystickRémi Verschelde1-2/+2
Bug introduced in 547a57777b199f451305a6d4b6ad63fb0b2bd3ed.
2017-01-09Added resources iconsDaniel J. Ramirez97-163/+3206
2017-01-08Added missing node icons, plus some icon changesDaniel J. Ramirez14-24/+281
2017-01-09Add clamp and wrap loop modes for animation tracks.Juan Linietsky6-26/+122
2017-01-08Moved JSON functions to built-in to_json, parse_json, validate_jsonJuan Linietsky10-49/+112
2017-01-08Remove XML format, as promised, for 3.0Juan Linietsky3-3070/+0
2017-01-08Removed Musepack, it's a pretty obsolete format nowadays.Juan Linietsky6-670/+0
2017-01-08Variant INT and REAL are now 64 bits (other types remain at 32)Juan Linietsky9-62/+201
2017-01-08-removed stop mouse and ignore mouse from control, which were confusing, ↵Juan Linietsky20-57/+53
replaced by mouse filter
2017-01-08More fixes to Joypad renaming.Andreas Haas5-38/+36
Windows did not compile anymore because DI8DEVTYPE_JOYPAD obviously isn't defined in the directx headers ^^ I also did the same renaming as in #7473 for the windows platform and reverted the changes in the gamepad mappings.
2017-01-08Removed ratio anchoring (will have to fix multiple 3D views later..)Juan Linietsky7-137/+51
2017-01-08Swapped expand and fill flag bits, so scenes don't save this property by defaultJuan Linietsky2-4/+4
2017-01-08Rename "joypad_linux" class to "JoypadLinux"Andreas Haas4-26/+25
Named this class in GodotCase, so it fits with the rest of the codebase.
2017-01-08PopupMenu now emits both index_pressed and id_pressed instead of ↵Juan Linietsky43-87/+89
item_pressed, closes #3188
2017-01-08Renamed finished to animation_finished, also passes the animation name when ↵Juan Linietsky4-4/+6
finished
2017-01-08Move tests again from core to mainRémi Verschelde30-2/+3
As advised by @reduz, as tests depend on other libs.
2017-01-08Finish replacement of joystick by joypadRémi Verschelde17-15/+17
Some parts were forgotten in 547a577.
2017-01-08opus: Update to upstream opusfile 0.8Rémi Verschelde5-72/+111
Had missed it in the previous commit as the upstream website is outdated.
2017-01-08Removed the "released" signal from button, it's pointless now that ↵Juan Linietsky1-2/+2
button_down and button_up exist.
2017-01-08Made Variant::NIL printable as "Null". Please everyone be on the lookout of ↵Juan Linietsky2-2/+5
bugs related to assigning an empty variant to a string, and expecting it to be not empty!
2017-01-08renamed joystick to joypad everywhere around source code!Juan Linietsky49-416/+416
2017-01-08Windows: Define _WIN32_WINRT to 0x0600 (Vista)Rémi Verschelde7-16/+9
Passed as a compiler define to be sure it is always define before windows.h is loaded. This means that Godot officially requires Vista API or later, it will not work on Windows XP or earlier. Also fix a bogus check for Windows 7 API.
2017-01-08renamed _input_event for GUI events to _gui_input, so it's more ↵Juan Linietsky117-224/+229
differentiated than generalized _input
2017-01-08Dictionary keys are now sorted by insertion orderJuan Linietsky2-13/+89
2017-01-08x11: Improve logic for cross-dependencies between freetype, zlib and libpngRémi Verschelde1-2/+13
Fixes #7373.
2017-01-08i18n: Add support for Scots (sco) languageRémi Verschelde1-0/+1
Fixes #6931.
2017-01-08removed unnecesary modulate funtions, which were superseded by self_modulateJuan Linietsky9-82/+26
2017-01-08Use more compatible initializarion of RWLockPosixJuan Linietsky1-1/+2
2017-01-08Added missing readers writers lock to windows, should compile and run again..Juan Linietsky3-0/+111
2017-01-08fixes compilation in windows?Juan Linietsky1-14/+2
2017-01-08Move core engine tests to core/Rémi Verschelde31-9/+4
2017-01-08Fix codeblock tag in classes.xml for EditorSettingsEmmanuel Leblond1-9/+11
2017-01-08i18n: Sync templates with current codeRémi Verschelde31-951/+2522
2017-01-08i18n: Sync translations with WeblateRémi Verschelde13-16543/+3219
Bengali and Turkish now 100% complete!
2017-01-08Fix code completion for new getnode syntaxJuan Linietsky4-8/+37
2017-01-08-Fix bugs related to PoolVector crashesJuan Linietsky5-5/+124
-Added ability to request nodes using $Name in GDScript :)
2017-01-07Memory pool vectors (DVector) have been enormously simplified in code, and ↵Juan Linietsky257-3095/+2783
renamed to PoolVector
2017-01-07exposed OS.set_exit_code and OS.get_exit_code to ClassDBkarroffel2-0/+16
2017-01-07Fix #7455 - script text editor's right click menu being weirdBojidar Marinov1-8/+9