<feed xmlns='http://www.w3.org/2005/Atom'>
<title>godot.git/modules/gdscript/gd_script.h, branch 1.0-rc2</title>
<subtitle>Godot Engine – Multi-platform 2D and 3D game engine https://godotengine.org</subtitle>
<id>https://git.neuromancer.sk/godot.git/atom/modules/gdscript/gd_script.h?h=1.0-rc2</id>
<link rel='self' href='https://git.neuromancer.sk/godot.git/atom/modules/gdscript/gd_script.h?h=1.0-rc2'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/'/>
<updated>2014-12-07T05:04:20Z</updated>
<entry>
<title>Batch of Bugfixes</title>
<updated>2014-12-07T05:04:20Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-12-07T05:04:20Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=c79be979d47daae613d1b1bbc732a30a74f56543'/>
<id>urn:sha1:c79be979d47daae613d1b1bbc732a30a74f56543</id>
<content type='text'>
-=-=-=-=-=-=-=-=-

-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!
</content>
</entry>
<entry>
<title>-Much improvement to baked light baker</title>
<updated>2014-10-28T01:54:32Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-10-28T01:54:32Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=e82dc402052a47b44bb3bcf50ee4801257f92778'/>
<id>urn:sha1:e82dc402052a47b44bb3bcf50ee4801257f92778</id>
<content type='text'>
-Fixed many bugs in stretch mode
-Fixes to camera project and unproject as consequence of the above
-added setget to script (documented in script doc)
-more fixes to collada exporter for blender
</content>
</entry>
<entry>
<title>Little Bits</title>
<updated>2014-10-12T05:13:22Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-10-12T05:13:22Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=948fd83cdded7fed77ae5213101c1a2ece580434'/>
<id>urn:sha1:948fd83cdded7fed77ae5213101c1a2ece580434</id>
<content type='text'>
-=-=-=-=-=-

-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-&gt;RGB if hardware support not found
</content>
</entry>
<entry>
<title>-variables with export in script are now IMMEDIATELY AND ALWAYS visible in properties (#718)</title>
<updated>2014-09-22T03:50:48Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-09-22T03:50:48Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=048fdc8aeabbd80ba9cc8914ec7f7baa00ad0c3d'/>
<id>urn:sha1:048fdc8aeabbd80ba9cc8914ec7f7baa00ad0c3d</id>
<content type='text'>
-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
</content>
</entry>
<entry>
<title>3D Physics Rework, Other Stuff</title>
<updated>2014-09-15T14:33:30Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-09-15T14:33:30Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=8cab401d08f8e25aa9b2dc710204785858ff3dbb'/>
<id>urn:sha1:8cab401d08f8e25aa9b2dc710204785858ff3dbb</id>
<content type='text'>
-=-=-=-=-=-=-=-=-=-=-=-=-=-

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.
</content>
</entry>
<entry>
<title>More 3D Work</title>
<updated>2014-06-16T13:22:26Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-06-16T13:22:26Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=703004f830f39adcde9b9565f1aa49d1b10e8d27'/>
<id>urn:sha1:703004f830f39adcde9b9565f1aa49d1b10e8d27</id>
<content type='text'>
-=-=-=-=-=-

-ESM Shadow Mapping for softer and less glitchy shadows
-HDR Pipeline (convert to Linear on texture import, convert to SRGB at the end)
-Fix to xml parse bug
</content>
</entry>
<entry>
<title>Making Godot Easier to Use..</title>
<updated>2014-05-24T04:35:47Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-05-24T04:35:47Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=1cad087969efefa401a11051343cd0689f660770'/>
<id>urn:sha1:1cad087969efefa401a11051343cd0689f660770</id>
<content type='text'>
-=-=-=-=-=-=-=-=-=-=-=-=-=-=

-Auto indenter in code editor, this makes it much easier to paste external code.
-Zoom in 2D viewport now uses the mouse pointer as reference.
-Obscure hack to see where code/line of GDScript in C++ backtrace.
-Fixed a bug where keys would get stuck on X11 if pressed simultaneously
-Added Api on IP singleton to request local IPs.
-Premultiplied alpha support when importing texture, editing PNGs and as a blend mode.
</content>
</entry>
<entry>
<title>-Fixes to OpenSSL compilation (more)</title>
<updated>2014-05-01T14:34:10Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-05-01T14:34:10Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=6572d5128856b2ec55a2c417c92e584899f4906f'/>
<id>urn:sha1:6572d5128856b2ec55a2c417c92e584899f4906f</id>
<content type='text'>
-Fix bug in GDScript, now static functions can call static functions.
</content>
</entry>
<entry>
<title>-scripts are converted to bytecode on export</title>
<updated>2014-02-25T12:31:47Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-02-25T12:31:47Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=b2ce682f6ed9493423be257a5b2e87126692a94f'/>
<id>urn:sha1:b2ce682f6ed9493423be257a5b2e87126692a94f</id>
<content type='text'>
-fix bug in doc where touchscreen events were not documented
</content>
</entry>
<entry>
<title>-moved script to modules</title>
<updated>2014-02-24T12:53:33Z</updated>
<author>
<name>Juan Linietsky</name>
</author>
<published>2014-02-24T12:53:33Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/godot.git/commit/?id=4b07eb8deb03ce8c7870d621cd03d04d45f4caaa'/>
<id>urn:sha1:4b07eb8deb03ce8c7870d621cd03d04d45f4caaa</id>
<content type='text'>
</content>
</entry>
</feed>
