aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/plugins/spatial_editor_plugin.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* -added custom metadata to physics shapes (2D only for now)Juan Linietsky2014-10-161-4/+11
| | | | -gizmos are not displayed in camera preview
* ColladaJuan Linietsky2014-10-141-1/+1
| | | | | | | | | | | | -=-=-=- -Fixed some DAE import & export bugs -Changed Collada exporter to use the mesh loops API -Added tangent export to Collada exporter -Added triangulation option to Collada exporter -Changed a little how normalmaps are handled in shader. Not sure if it's working properly, be careful. -Fixed some strange bug with kinematic bodies #776 -Fix release compilaiton issues #782
* Little BitsJuan Linietsky2014-10-121-41/+181
| | | | | | | | | | | | | | | | | | | -=-=-=-=-=- -fix duplicate function bug when creating script callback in editor -fix bug where hiding lights does not work -fix 2D audio listener bug (romulox_x reported) -fix exported properties with inheritance bug -fix timer autostart (make it not work on editor) -reactivate first camara found if viewport runs out of active camera -option to hide gizmos in viewport -changed skeleton gizmo because it sucks -Make convex shapes using CollisionShape visible (use quickhull class) -fix up menu when editing a mesh, to export collision, navmesh, convex, etc. from it. -make a menu option to show SRGB in 3D editor views by default -make option to edit default light direction in viewport settings -make option to edit default ambient light in viewport settings -make software conversion of linear->RGB if hardware support not found
* Misc BitsJuan Linietsky2014-10-091-0/+74
| | | | | | | | -=-=-=-=- -Added more missing icons to nodes. -Added more 3D split view modes -Fixed annoying script editor bug with keyboard focus
* Huge Amount of BugFixJuan Linietsky2014-10-031-0/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -=-=-=-=-=-=-=-=-=-=- -Fixes to Collada Exporter (avoid crash situtions) -Fixed to Collada Importer (Fixed Animation Optimizer Bugs) -Fixes to RigidBody/RigidBody2D body_enter/body_exit, was buggy -Fixed ability for RigidBody/RigidBody2D to get contacts reported and bodyin/out in Kinematic mode. -Added proper trigger support for 3D Physics shapes -Changed proper value for Z-Offset in OmniLight -Fixed spot attenuation bug in SpotLight -Fixed some 3D and 2D spatial soudn bugs related to distance attenuation. -Fixed bugs in EventPlayer (channels were muted by default) -Fix in ButtonGroup (get nodes in group are now returned in order) -Fixed Linear->SRGB Conversion, previous algo sucked, new algo works OK -Changed SRGB->Linear conversion to use hardware if supported, improves texture quality a lot -Fixed options for Y-Fov and X-Fov in camera, should be more intuitive. -Fixed bugs related to viewports and transparency Huge Amount of New Stuff: -=-=-=-=-=-=-=-==-=-=-=- -Ability to manually advance an AnimationPlayer that is inactive (with advance() function) -More work in WinRT platform -Added XY normalmap support, imports on this format by default. Reduces normlmap size and enables much nice compression using LATC -Added Anisotropic filter support to textures, can be specified on import -Added support for Non-Square, Isometric and Hexagonal tilemaps in TileMap. -Added Isometric Dungeon demo. -Added simple hexagonal map demo. -Added Truck-Town demo. Shows how most types of joints and vehicles are used. Please somebody make a nicer town, this one is too hardcore. -Added an Object-Picking API to both RigidBody and Area! (and relevant demo)
* Fixing Issues...Juan Linietsky2014-09-191-1/+41
| | | | | | | - #672 (default user:// in $HOME/.godot/app_userdata (linux/osx) and $APPDATA/Godot/app_userdata (Windows) - #676 (draw both tiles and octants in order from top to bottom, left to right ) - #686 (unicode escape sequences work now) - #702 (was not a bug, but a test was added to see if bodies went too far away)
* fix skeleton AABB computation, addeded shadeless view modeJuan Linietsky2014-09-181-0/+13
|
* Merge pull request #593 from marynate/PR-gizmo-opacityJuan Linietsky2014-09-171-2/+5
|\ | | | | Add editor setting: Manipulator Gizmo Opacity
| * Add editor setting: Manipulator Gizmo Opacitymarynate2014-07-151-2/+5
| |
* | CollisionPolygon (3D)Juan Linietsky2014-09-161-0/+6
| | | | | | | | Workaround for round() on PC.
* | Camera FixesJuan Linietsky2014-09-151-1/+38
| | | | | | | | | | | | | | | | | | | | | | -=-=-=-=-=-= -Object Picking and orthogonal camera related functions fixed (i hope) -Going to preview mode in the camera shows a frame with the correct game aspect ratio -Changed Camera API and properties a little t make it more straightforward -Fixed bug in shader compiler. -Fixed bug in ShaderGL
* | Make sure View Grid state saved with scene statemarynate2014-07-151-2/+1
| |
* | Fixed #470 View grid toggle in 3d not workingmarynate2014-07-151-0/+7
|/
* Add align with view in 3d editor viewport (useful for aligning camera withmarynate2014-06-131-3/+37
| | | | current view)
* Lots of 3D improvements:Juan Linietsky2014-05-041-61/+200
| | | | | | | | | | | | | -Object Manipulator Gizmo keeps proper scale in all windows and projections, (configurable on settings too). -Manipulator gizmos for other objects (camera, shapes, etc) massively improved and bug-fixed. -Manipulator gizmos are different for edited object and other objects. -Properly highlight manipulator gizmo handles when hovered. -Fixed bugs in fragment program when using more than 1 light together. -Reload png/jpg files automatically in editor if edited externally. -Added 4-stages Parallel Split Shadow Mapping, to improve shadow quality in large scenarios -Added PCF13 to improve smoothness of shadow borders -General optimization of directional light shadow mapping for Orthogonal,PSM and PSSM. -Fixed normal mapping when importing DAE files, works nicely now.
* -Fixed a few bugs in ViewportJuan Linietsky2014-04-101-1/+1
| | | | | -Made a few demos using Viewport to show it's true power! -Fixed some start-up error messages.
* Merge pull request #237 from marynate/PR-maya-navreduz2014-04-051-188/+246
|\ | | | | Maya and modo style navigation
| * Hold shift to speedup pan/zoom in maya navigation schememarynate2014-04-011-3/+12
| |
| * Keep selection from been cleared when navigating in 3d viewportmarynate2014-04-011-0/+5
| | | | | | | | | | Conflicts: tools/editor/plugins/spatial_editor_plugin.cpp
| * Fix bug in 3d navigation scheme selection; Add modo navigation schememarynate2014-04-011-4/+10
| |
| * Disable transform operation when navigationmarynate2014-04-011-172/+173
| |
| * Add maya style navigation scheme to 3d vieewportmarynate2014-04-011-17/+54
| |
* | Space to toggle maximize viewportmarynate2014-04-011-0/+53
| | | | | | | | Cleanup debug output
* | Add hotkey for switching viewportsmarynate2014-04-011-4/+4
|/ | | | Hotkey added
* Add F key to center 3d viewport to selected nodemarynate2014-02-231-0/+3
|
* GODOT IS OPEN SOURCEJuan Linietsky2014-02-091-0/+3311