| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
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.
|
|
|
|
|
|
| |
modified files)
-.pck and .zip exporting redone, seems to be working..
|
|
|
|
|
|
| |
This new name also makes its purpose a little clearer
This is a step towards fixing #56
|
| |
|
|
|
|
|
|
| |
The new Quick Filter Files behaviour since 8b47e26 had not been implemented,
so this implements it and makes it an editor hotkey instead of a menu entry.
Fixes #7582.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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).
|
| |
|
| |
|
|
|
|
| |
added a check to detect this case in the future
|
|
|
|
|
| |
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.
|
|
|
|
| |
naming
|
|
|
|
|
|
|
|
| |
The method _generate_serial_child_name is indeed called relatively often
in editor mode, but that commented out code chunk hardly adds to its
slowness (and with the default setting, not at all).
Also did various related code cleanups and simplifications.
|
|
|
|
|
|
| |
visible (property) - access set_visible(bool) is_visible()
is_visible_in_tree() - true when visible and parents visible
show() hide() - for convenience
|
|
|
|
|
| |
-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).
|
|
|
|
|
|
|
|
|
|
|
|
| |
Matrix32 -> Transform2D
Matrix3 -> Basis
AABB -> Rect3
RawArray -> PoolByteArray
IntArray -> PoolIntArray
FloatArray -> PoolFloatArray
Vector2Array -> PoolVector2Array
Vector3Array -> PoolVector3Array
ColorArray -> PoolColorArray
|
|\
| |
| | |
Fix the order in which additional transformations are applied
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Transform.
This is a part of the breaking changes proposed in PR #6865, solving the issue regarding the order of affine transformations described in #2565. This PR also fixes the affected code within Godot codebase. Includes improvements to documentation too.
Another change is, Matrix3::get_scale() will now return negative scaling when the determinant of the matrix is negative. The rationale behind this is simple: when performing a polar decomposition on a basis matrix M = R.S, we have to ensure that the determinant of R is +1, such that it is a proper rotation matrix (with no reflections) which can be represented by Euler angles or a quaternion.
Also replaced the few instances of float with real_t in Matrix3 and Transform.
Furthermore, this PR fixes an issue introduced due to the API breakage in #6865. Namely Matrix3::get_euler() now only works with proper rotation matrices. As a result, the code that wants to get the rotation portion of a transform needs to use Matrix3::get_rotation() introduced in this commit, which complements Matrix3::get_scaled(), providing both parts of the polar decomposition.
Finally, it is now possible to construct a rotation matrix from Euler angles using the new constructor Matrix3::Matrix3(const Vector3 &p_euler).
|
| |
| |
| |
| | |
container!
|
| | |
|
| |
| |
| |
| | |
item_pressed, closes #3188
|
| |
| |
| |
| | |
differentiated than generalized _input
|
| |
| |
| |
| | |
renamed to PoolVector
|
| | |
|
|/
|
|
|
|
|
|
| |
categories.
-Changed SectionedPropertyEditor to support this
-Renamed Globals singleton to GlobalConfig, makes more sense.
-Changed the logic behind persisten global settings, instead of the persist checkbox, a revert button is now available
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| | |
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.
|
|/
|
|
|
|
| |
-Modified help to display properties
GDScript can still not make use of them, though.
|
|
|
|
|
|
|
|
| |
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()
|
|\
| |
| |
| |
| | |
Various merge conflicts have been fixed manually and some mistakes
might have been made - time will tell :)
|
| |
| |
| |
| |
| |
| | |
Ability to enable and change MSAA settings
Ability to change VCT quality
Ability to enable/disable HDR rendering
|
| | |
|
| |
| |
| |
| | |
-Gizmos work again
|
| | |
|
| |
| |
| |
| | |
-implemented the scene part of visual server and rasterizer, objects without lighting and material are rendererd only
|
| |
| |
| |
| |
| |
| |
| | |
GUI now
-2D editing now seems to work
-Added some functions and refactoring to Viewport
|
| |
| |
| |
| |
| |
| |
| |
| | |
-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
|
| |
| |
| |
| |
| |
| |
| |
| | |
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!
|
|/
|
|
|
|
|
|
| |
The shortcut will focus the origin after you moved around with shift + mouse3.
The default shortcut is the letter "O", like "F" for focus.
This can be customized in the editor shortcuts menu.
Closes #166
|
|
|
|
| |
-Added set_child_rect, which was unavailable for script
|
|
|
|
| |
Arranged some functions to achieve this.
|
| |
|
|
|
|
|
| |
In 3D it will focus in the first viewport
Enable double click for trees
|
|
|
|
| |
* Bind EditorSpatialGizmo::clear method
|
|
|
|
| |
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
|
|
|
|
| |
for now it does not support the emulate numpad setting
|
| |
|
| |
|
|
|
|
|
|
|
| |
and fixed russian localization based on user feedback.
Added strings already contained in the current version of the
localization.
|