summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2014-10-09Misc BitsJuan Linietsky
-=-=-=-=- -Added more missing icons to nodes. -Added more 3D split view modes -Fixed annoying script editor bug with keyboard focus
2014-10-07Build System ChangesJuan Linietsky
-=-=-=-=-=-=-=-=-=-= Build System: -Big clean up of SCons, changed how builds are done to a much cleaner method (check the Github Wiki for instructions). -Deactivated BlackBerry10 (sorry), if no mantainer found (or BlackBerry does not send us a Passort ;), platform will be removed as we have no longer devices to test. Engine: -Removed deprecated object and scene format (was in there just for compatibility, not in use since a long time). -Added ability to open scenes even if a node type was removed (will try to guess the closest type). -Removed deprecated node types.
2014-10-03Icons for many new types of nodesJuan Linietsky
2014-10-03missing fils from yesterday comit.Juan Linietsky
must have made some mistake with git, not sure why they were not sent..
2014-10-03Huge Amount of BugFixJuan Linietsky
-=-=-=-=-=-=-=-=-=-=- -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)
2014-09-25Restore current frame and assigned actions to the state before exportRalf Hölzemer
2014-09-23Only export Actions with a user count > 0Ralf Hölzemer
2014-09-22-variables with export in script are now IMMEDIATELY AND ALWAYS visible in ↵Juan Linietsky
properties (#718) -WorldEnvironment cleanup issues fixed (#563) -Text Editor improvement to shift-mouse selection (#648) -(Hopefully) fixed rare (but horrible) indexing bug in GDScript compiler (#652) -Some changes to PhysicsBody API, renamed property "active" to "sleeping", which makes more sense -Added add_collision_exception() API in PhysicsBody (more accessible) -ability to select and copy in the output messages panel
2014-09-21Fix #395: change node name does not refresh in the inspector until you ↵Ralf Hölzemer
reselect it - added missing _node_renamed function to SceneTreeDock
2014-09-21Fixed too many little issues, check the issues closed today.Juan Linietsky
2014-09-19Fixing Issues...Juan Linietsky
- #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)
2014-09-18add title to project manager windowDana Olson
2014-09-18fix skeleton AABB computation, addeded shadeless view modeJuan Linietsky
2014-09-17Recover shape key stateSergey Lapin
2014-09-17Added option to enable and disable export of shape keysSergey Lapin
2014-09-17Added shape keys exportSergey Lapin
2014-09-17Merge pull request #317 from sanikoyes/hotfix-Export-translationJuan Linietsky
Fix export translation(can't save pot file)
2014-09-17Merge pull request #544 from marynate/PR-fix-help-historyJuan Linietsky
Fix bug help history overwrote by tree item selected call back
2014-09-17Merge pull request #580 from marynate/PR-fix-particles-editor-menuJuan Linietsky
Particles editor menu not display in proper position
2014-09-17Merge pull request #593 from marynate/PR-gizmo-opacityJuan Linietsky
Add editor setting: Manipulator Gizmo Opacity
2014-09-17Merge pull request #607 from TheoXD/_reimport_anim_mergeJuan Linietsky
Merge animations during reimport
2014-09-17Merge pull request #639 from adolson/disable-auto-switch-resource-tabJuan Linietsky
Usability: don't switch to resource tab when switching to script tab
2014-09-17Merge pull request #641 from adolson/default-project-dirJuan Linietsky
added settings for default project & export dirs
2014-09-17Merge pull request #643 from adolson/custom-export-binary-path-fixJuan Linietsky
oh thanks!
2014-09-16CollisionPolygon (3D)Juan Linietsky
Workaround for round() on PC.
2014-09-15Camera FixesJuan Linietsky
-=-=-=-=-=-= -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
2014-09-153D Physics Rework, Other StuffJuan Linietsky
-=-=-=-=-=-=-=-=-=-=-=-=-=- 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.
2014-09-023D Physics and Other StuffJuan Linietsky
-=-=-=-=-=-=-=-=-=-=-=-=-= -New Vehicle (Based on Bullet's RaycastVehicle) - Vehiclebody/VehicleWheel. Demo will come soon, old vehicle (CarBody) will go away soon too. -A lot of fixes to the 3D physics engine -Added KinematicBody with demo -Fixed the space query API for 2D (demo will come soon). 3D is WIP. -Fixed long-standing bug with body_enter/body_exit for Area and Area2D -Performance variables now includes physics (active bodies, collision pairs and islands) -Ability to see what's inside of instanced scenes! -Fixed Blend Shapes (no bs+skeleton yet) -Added an Android JavaClassWrapper singleton for using Android native classes directly from GDScript. This is very Alpha!
2014-08-25fix custom export packages for PCDana Olson
also allow custom templates to reside outside of res:// for all platforms
2014-08-24added settings for default project & export dirsDana Olson
2014-08-22don't switch to resource tab when switching to script tabDana Olson
2014-08-15Forgot about keeping value tracks.Theo Hallenius
2014-08-14Little BitsJuan Linietsky
-=-=-=-=-=- -Fixed small bugs all around -Added ability to show/hide entire sections of the spatial (3D) tree -WIP new vehicle (not ready yet) based on Bullet
2014-08-14Merge pull request #595 from marynate/PR-fix-view-gridreduz
Fixed #470 View grid toggle in 3d not working
2014-08-13ERR_FILE_CANT_READ -> ERR_FILE_CANT_WRITEtnt
2014-08-03Keep function callbacks, no throwing errorsTheo Hallenius
2014-08-02Merge animations during reimportTheo Hallenius
2014-08-01Small Issues & MaintenanceJuan Linietsky
-=-=-=-=-=-=-=-=-=-=-=-=-= -Begin work on Navigation Meshes (simple pathfinding for now, will improve soon) -More doc on theme overriding -Upgraded OpenSSL to version without bugs -Misc bugfixes
2014-07-15Make sure View Grid state saved with scene statemarynate
2014-07-15Fixed #470 View grid toggle in 3d not workingmarynate
2014-07-15Add editor setting: Manipulator Gizmo Opacitymarynate
2014-07-10Particles editor menu not display in proper positionmarynate
2014-07-07Polygon2DJuan Linietsky
-=-=-=-=- Another gift for those who make 2D games: -Edit polygons, concave or convex, color them, texture them and uv-map them -Corresponding editor -Can have a custom pivot, so they are compatible with bones and IK
2014-07-062D Animation ImprovementsJuan Linietsky
-=-=-=-=-=-=-=-=-=--=-=-= -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)
2014-07-02Merge pull request #504 from marynate/PR-pm-filterreduz
Add project list filter for easy finding projects
2014-07-02Forgot to add SceneTreeDock::set_selected change in last PRmarynate
2014-06-30Fixed when opening sub-scene by pressing sub-scene icon in scene tree, tab ↵marynate
changed to script tab
2014-06-30Fix ERROR: FileAccessWindows::_get_modified_time: Method/Function Failed on ↵marynate
windows due to accessing modifiled time of internal resource when editor gaining focus
2014-06-29Bug FixesJuan Linietsky
-=-=-=-=- -Documentation now shows overridable theme values (though this needs to be documented). -Detect when object transform is flipped and flip normals too. -TileMap can specify bounce and friction for collision. -Removed limit of 4 lights per object -Added is_hovered() to buttons.
2014-06-29Merge pull request #542 from marynate/PR-fix-resource-name-updatereduz
Fixed resource name not updated when saved in resurce dock