summaryrefslogtreecommitdiffstats
path: root/scene/scene_string_names.h
Commit message (Collapse)AuthorAgeFilesLines
...
* -Fixes to undo redo to avoid crash, closes #24251Juan Linietsky2019-02-141-0/+2
| | | | | | | | | -Changed Animation to have a special signal when tracks are changed, to avoid unnecesary track cache rebuilds in AnimationPlayer -Added missing emit_changed whe modifying keys to Animation -Changed AnimationPlayer to use the new refcounted connections instead of the previous hacky way to keep references -Changed AnimationEditor to update the current track when keys are edited -Fixed bug where undo/redo did not work with AnimationKeyEdit (was not being updated) -Made sure UndoRedo does not mind deleted objects in undo/redo history, this would corrupt the history or clear it without need.
* Core: Ensure classes match their header filenameRémi Verschelde2019-02-121-1/+1
| | | | | | | | | | | | | | | Also drop some unused files. Renamed: - `core/dvector.h` -> `pool_vector.h` - `core/io/resource_import.h` -> `resource_importer.h` - `core/sort.h` -> `sort_array.h` - `core/string_db.h` -> `string_name.h` Dropped: - `core/allocators.h` - `core/os/shell.h` - `core/variant_construct_string.cpp`
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Make core/ includes absolute, remove subfolders from include pathRémi Verschelde2018-09-121-2/+2
| | | | | | This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
* Massive rewrite to AnimationTree. Many APIs changed in order to:Juan Linietsky2018-08-201-0/+2
| | | | | -Reuse resources -Expose properties in AnimationTree
* Expose _clips_input as a virtual function, closes #15358Juan Linietsky2018-07-291-0/+2
|
* -Added AnimationGraphPlayer (still missing features)Juan Linietsky2018-06-181-0/+2
| | | | -Added ability to edit resources from built-in inspector (wip, needs testing and feedback)
* Add ready signal to NodeZephilinox2018-01-201-0/+1
| | | | Closes #15889
* Renamed tree_exited to tree_exiting. tree_exited is now used for actual out ↵Juan Linietsky2018-01-121-0/+1
| | | | | | of tree notification. Updated doc accordingly.
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Renamed fixed_process to physics_processAndreaCatania2017-09-301-1/+1
|
* Use HTTPS URL for Godot's website in the headersRémi Verschelde2017-08-271-1/+1
|
* Fixed some string names and animation playback options, closes #9446Juan Linietsky2017-08-061-2/+0
|
* renamed node path, closes #5691Juan Linietsky2017-08-051-1/+1
|
* Reworked translation systemJuan Linietsky2017-06-281-1/+1
| | | | | -Label and Button reload translation on the fly -Resources are loaded and reload depending on locale
* Add "Godot Engine contributors" copyright lineRémi Verschelde2017-04-081-0/+1
|
* Added ability to change A-star cost functionFabian Mathews2017-04-011-0/+3
|
* fixed ClassDB inconsistenciesKarroffel2017-03-131-1/+1
| | | | fixes #7960
* A Whole New World (clang-format edition)Rémi Verschelde2017-03-051-11/+11
| | | | | | | | | | | | | | | | | | | | | | | | I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
* Add emission_finished signal to Particles2DBojidar Marinov2017-02-251-0/+1
| | | | | (Also remove some Particles2D::testee method, which was unused) Resolves #3963
* Renamed most signals so they refer to:Juan Linietsky2017-01-121-20/+20
| | | | | -An action being requested to the user in present tense: (ie, draw, gui_input, etc) -A notification that an action happened, in past tense (ie, area_entered, modal_closed, etc).
* - _ready() callback only happens once now, if you want to receive it again, ↵Juan Linietsky2017-01-101-0/+2
| | | | | | | use request_ready() - C++ Nodes mostly do an internal process callback, so it does not conflict with users willing to use their own process callbacks - callbacks such as _input, _process, _fixed_process _unhandled_input, _unhandled_key_input do not requiere calling a function to enable them. They are enabled automatically if found on the script.
* Renamed finished to animation_finished, also passes the animation name when ↵Juan Linietsky2017-01-081-0/+1
| | | | finished
* renamed _input_event for GUI events to _gui_input, so it's more ↵Juan Linietsky2017-01-081-0/+2
| | | | differentiated than generalized _input
* 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!
* Changed import workflowJuan Linietsky2016-05-271-0/+6
| | | | | | | | | | | | | | | | -Rearrange favorites in fs dock with drag and drop -Removed import -> sub-scene, moved to scenetree contextual menu -Removed import -> re-import , moved and integrated to FS dock -Added ability in FS dock to re-import more than one resource simultaneously -Added ability to drag from native filesystem explorer to Godot, only works on Windows though -Removed scene reimport merge options, never worked well. Eventually merging materials should be re-added -Added ability to set custom root node type when importing scenes -Re-Import is now automatic, can be configured back to manual in editor settings -Added resource previews in property list for many resource types
* -Added configuration warning system for nodesJuan Linietsky2016-05-171-0/+2
| | | | | -Added a new "add" and "instance" buttons for scene tree -Added a vformat() function to ease translation work
* New reworked AnimatedSprite!Juan Linietsky2016-05-141-0/+1
| | | | | | | | | -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.
* animation_started signal to AnimationPlayerJakub Grzesik2016-04-141-0/+1
|
* Add a `sleeping_state_changed` signal to RigidBody and RigidBody2D classesBojidar Marinov2016-04-061-0/+1
| | | | Closes #3911
* Update copyright to 2016 in headersGeorge Marques2016-01-011-1/+1
|
* Several performance improvements, mainly in loading and instancing scenes ↵Juan Linietsky2015-06-291-1/+11
| | | | | | | | and resources. A general speedup should be apparent, with even more peformance increase when compiling optimized. WARNING: Tested and it seems to work, but if something breaks, please report.
* Updated copyright year in all headersJuan Linietsky2015-04-181-1/+1
|
* Changes to LightJuan Linietsky2015-04-031-0/+1
| | | | | | | | -=-=-=-=-=-=-=-= -Changed material unshaded property for an enum, which supports light-only shading -Added a "Mix" shading mode, useful for using lights as masks -Added energy parameter to Light2D
* Area2D can now detect overlap with other areasJuan Linietsky2015-03-171-0/+7
| | | | this should make everything simpler, specially for newcomers to Godot
* support for 2D shadow castersJuan Linietsky2015-03-021-0/+1
| | | | | | | | | | Added support for 2D shadow casters. *DANGER* Shaders in CanvasItem CHANGED, if you are using shader in a CanvasItem and pull this, you will lose them. Shaders now work through a 2D material system similar to 3D. If you don't want to lose the 2D shader code, save the shader as a .shd, then create a material in CanvasItem and re-assign the shader.
* Fixes to GraphEdit:Juan Linietsky2015-01-081-0/+1
| | | | | | | | -Working area is bigger now, solves #1148 -Using Position now works, fixes #1141 -RGB ops now work, fixes #1139 -Missing bindings to GraphEdit and GraphNode added -Shader Graph Editor Shows errors on cyclic links and missing connections
* Batch of BugfixesJuan Linietsky2014-12-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | -=-=-=-=-=-=-=-=- -Fixed Export UV XForm (should work now). #923 -Fixed enforcement of limits in property editor. #919 -Fixed long-standing bug of export editings in script inheritance. #914, #859, #756 -Fixed horrible error reporting in shader language. #912 -Added kinematic collision with plane (please test well). #911 -Fixed double animation track insert when using 2D rigs. #904 -VKey updates offset parameter in sprite edition. #901 -Do not allow anymore a script to preload itself. (does not fix #899, but narrows it down) -Avoid connection editor from overriding selected text. #897 -Fixed timer autostart. #876 -Fixed collision layers in 3D physics. #872 -Improved operators in shader #857 -Fixed ambient lighting bug #834 -Avoid editor from processing gamepad input #813 -Added not keyword #752 Please test!
* -fixes to vmethod for buttonJuan Linietsky2014-12-021-0/+3
|
* SceneMainLoop -> SceneTreeJuan Linietsky2014-11-051-6/+6
| | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-=-=-=-=- *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
* 3D Physics Rework, Other StuffJuan Linietsky2014-09-151-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-=-=-=-=- 3D Physics: -Fixed "Bounce" parameter in 3D -Fixed bug affecting Area (sometims it would not detect properly) -Vehicle Body has seen heavy work -Added Query API for doing space queries in 3D. Needs some docs though. -Added JOINTS! Adapted Bullet Joints: and created easy gizmos for setting them up: -PinJoint -HingeJoint (with motor) -SliderJoint -ConeTwistJoint -Generic6DOFJoint -Added OBJECT PICKING! based on the new query API. Any physics object now (Area or Body) has the following signals and virtual functions: -input_event (mouse or multitouch input over the body) -mouse_enter (mouse entered the body area) -mouse_exit (mouse exited body area) For Area it needs to be activated manually, as it isn't by default (ray goes thru). Other: -Begun working on Windows 8 (RT) port. Compiles but does not work yet. -Added TheoraPlayer library for improved to-texture and portable video support. -Fixed a few bugs in the renderer, collada importer, collada exporter, etc.
* 2D Animation ImprovementsJuan Linietsky2014-07-061-0/+1
| | | | | | | | | -=-=-=-=-=-=-=-=-=--=-=-= -Ability to set 2D nodes as bones -Abity to set 2D nodes as IK chains -2D IK Solver -Improvements in the UI for adding keyframes (separate loc,rot,scale buttons)
* Light Baker!Juan Linietsky2014-06-111-0/+3
| | | | | | -=-=-=-=-=-= -Support for lightmap baker, have fun figuring out how it works before tutorial is published.
* More 3D ImprovementsJuan Linietsky2014-05-291-0/+4
| | | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-= -Sprite3D and AnimatedSprite3D support. -Opaque pre-pass works, is compatible with shadows -Improved shadow map rendering (can differentiate between plain opaque and opaque with shaders/discard/etc) -Added option to use alpha discard in FixedMaterial -Improved Glow FX, many more options (three modes, Additive, Screen and SoftLight), strength and scale -Ability for Background (image or cubemap) to send to glow buffer -Dumb Deploy of clients now actually works in Android -Many Many rendering fixes, 3D is much more usable now.
* GODOT IS OPEN SOURCEJuan Linietsky2014-02-091-0/+151