summaryrefslogtreecommitdiffstats
path: root/tools/editor/plugins/sample_library_editor_plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-546/+0
| | | | | | The other subfolders of tools/ had already been moved to either editor/, misc/ or thirdparty/, so the hiding the editor code that deep was no longer meaningful.
* Complete the globals.h -> global_config.h conversionBojidar Marinov2017-02-231-1/+1
|
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-131-11/+11
| | | | | | This new name also makes its purpose a little clearer This is a step towards fixing #56
* Style: Cleanups, added headers, renamed filesRémi Verschelde2017-01-161-0/+1
| | | | | | | | | 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).
* Oops! Audio engine has vanished :DJuan Linietsky2017-01-151-1/+3
|
* Style: Fix whole-line commented codeRémi Verschelde2017-01-141-5/+5
| | | | | 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.
* rename String.extension() -> String.get_extension() / String.basename() -> ↵Juan Linietsky2017-01-141-2/+2
| | | | String.get_basename()
* New API for visibility in both CanvasItem and SpatialJuan Linietsky2017-01-131-1/+1
| | | | | | visible (property) - access set_visible(bool) is_visible() is_visible_in_tree() - true when visible and parents visible show() hide() - for convenience
* renamed _input_event for GUI events to _gui_input, so it's more ↵Juan Linietsky2017-01-081-2/+2
| | | | differentiated than generalized _input
* Memory pool vectors (DVector) have been enormously simplified in code, and ↵Juan Linietsky2017-01-071-2/+2
| | | | renamed to PoolVector
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-021-12/+12
| | | | | | | | Variant. All usages of "type" to refer to classes were renamed to "class" ClassDB has been exposed to GDScript. OBJ_TYPE() macro is now GDCLASS()
* Merge remote-tracking branch 'origin/gles3' into gles3-on-masterRémi Verschelde2017-01-021-1/+1
|\ | | | | | | | | Various merge conflicts have been fixed manually and some mistakes might have been made - time will tell :)
| * Begining of GLES3 renderer:Juan Linietsky2016-10-031-1/+1
| | | | | | | | | | | | | | | | -Most 2D drawing is implemented -Missing shaders -Missing all 3D -Editor needs to be set on update always to be used, otherwise it does not refresh -Large parts of editor not working
* | Welcome in 2017, dear changelog reader!Rémi Verschelde2017-01-011-1/+1
|/ | | | | | | | That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games!
* SampleLibraryEditor: Initialize "is_playing" variableBłażej Szczygieł2016-06-031-1/+1
| | | | | | | | | Fixes crash caused by jumping to wrong place due to uninitialized variable. Closes #4703 (cherry picked from commit 9acb666320a03d6f47b6bd43842488bdb921be9f)
* i18n: Second pass at proofreadingRémi Verschelde2016-05-211-3/+3
| | | | | Mostly removing commented out strings, plus a few critical ones that should not be translated.
* i18n: Proofreading of all stringsRémi Verschelde2016-05-211-1/+1
| | | | | | Done to ensure that no important identifiers are translatable, to fix compound strings using the new vformat() function, and some general English proofreading here and there.
* New reworked AnimatedSprite!Juan Linietsky2016-05-141-0/+124
| | | | | | | | | -New SpriteFrames editor, with support for drag&drop, multiple animation sets, animation speed and loop. -New AnimatedSprite, with support for all the new features! AnimatedSprite3D has not been updated yet. -Added support for drag&drop to other editors, such as resourcepreload, sample library, etc.
* Modified editor strings to be translatable in the futureJuan Linietsky2016-05-031-15/+15
|
* Remove redundant buttonsRémi Verschelde2016-03-131-73/+3
| | | | | Now the Load button is alone on its line, we probably need to find it a better place.
* Add stop and delete buttons to sample libraryRémi Verschelde2016-03-131-32/+56
| | | | | | Based on the work by @rdcklinux in #3339. The play button becomes a stop button while playing. A delete button is added in the last column.
* -Massive editor dialog cleanupJuan Linietsky2016-01-171-5/+15
| | | | -Added a bottom menu list
* Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
|
* Added tooltip for a few buttons in sample library editorTybobobo2015-11-181-0/+4
|
* new file dialog!Juan Linietsky2015-06-061-2/+2
| | | | | | | | | -ItemList control for easier lists/thumbnails -New file dialog, with support for thumbnails, favorites, recent places, etc -Moved .fscache out of the project, no more bugs due to committed/pulled .fscache! -Dir dialog now sorts directories
* -Changed Godot exit to be clean.Juan Linietsky2015-04-201-1/+2
| | | | | -Added more debug information on memory cleanliness on exit (if run with -v) -Fixed several memory leaks, fixes #1731, fixes #755
* Updated copyright year in all headersJuan Linietsky2015-04-181-1/+1
|
* Changed popup_centered by popup_centered_minsize in editor dialogsFranklin Sobrinho2015-04-081-1/+1
|
* Sort sample lists by name(more readable)sanikoyes2015-03-251-0/+1
|
* SceneMainLoop -> SceneTreeJuan Linietsky2014-11-051-3/+3
| | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-=-=-=-=- *YOUR SOURCE MIGHT NOT WORK* For mor information on fix: https://github.com/okamstudio/godot/wiki/devel_scene_tree Other stuff: -Shower of bullets demo -Fixes all around
* A bit of everything:Juan Linietsky2014-05-141-1/+1
| | | | | | | | | | | | | -IMA-ADPCM support for samples, this means that sound effects can be compressed and use 4 timess less RAM. -New 3D import workflow based on Wavefront OBJ. Import single objects as mesh resources instead of full scenes. Many people prefers to work this way. Just like the rest of the imported resources, these are updated in realtime if modified externally. -Mesh resources now support naming surfaces. This helps reimporting to identify which user-created materials must be kept. -Several fixes and improvements to SurfaceTool. -Anti Aliasing added to WorldEnvironment effects (using FXAA) -2D Physics bodies (RigidBody, KinematicBody, etc), Raycasts, Tilemap, etc support collision layers. This makes easy to group which objects collide against which. -2D Trigger shapes can now also trigger collision reporting in other 2D bodies (it used to be in Area2D before) -Viewport render target textures can now be filtered. -Few fixes in GDscript make it easier to work with static functions and class members. -Several and many bugfixes.
* GODOT IS OPEN SOURCEJuan Linietsky2014-02-091-0/+449