aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/material_editor_plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: rename tools/editor/ to editor/Rémi Verschelde2017-03-051-413/+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.
* Rename the _MD macro to D_METHODHein-Pieter van Braam2017-02-131-2/+2
| | | | | | 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/+29
| | | | | | | | | 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).
* Style: Fix whole-line commented codeRémi Verschelde2017-01-141-2/+2
| | | | | 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.
* 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-9/+9
| | | | renamed to PoolVector
* Use right handed coordinate system for rotation matrices and quaternions. ↵Ferenc Arn2017-01-031-2/+2
| | | | | | | | Also fixes Euler angles (XYZ convention, which is used as default by Blender). Furthermore, functions which expect a rotation matrix will now give an error simply, rather than trying to orthonormalize such matrices. The documentation for such functions has be updated accordingly. This commit breaks code using 3D rotations, and is a part of the breaking changes in 2.1 -> 3.0 transition. The code affected within Godot code base is fixed in this commit.
* ObjectTypeDB was renamed to ClassDB. Types are meant to be more generic to ↵Juan Linietsky2017-01-021-2/+2
| | | | | | | | 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()
* Begining of GLES3 renderer:Juan Linietsky2016-10-031-0/+3
| | | | | | | | -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
* Fix editor glitches when the mesh/material preview is shownFranklin Sobrinho2016-08-161-1/+1
|
* -Some fixes to OSX retina scaling for window functionsJuan Linietsky2016-05-301-1/+1
| | | | -Implemented HiDPI detection and support for Godot Editor!
* -Improve resource previewsJuan Linietsky2016-05-231-0/+381
-Also fixed draw_texture_rect() tile parameter