Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36808] trunk/blender/source/blender/ blenloader/intern/readfile.c: Bugfix [#27452] Wrong linking of character groups

2011-05-21 Thread Campbell Barton
Pulling in the objects with the group is bad and wasn't intended. give_base_to_objects() had very confusing arguments, just made some minor changes to avoid making the same error in r36762 again. preparing a new fix which only makes changes for appending non-group datablocks which indirectly appen

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36811] trunk/blender/source/blender/ editors: view3d function naming, no functional changes.

2011-05-21 Thread jmsoler
Selon Campbell Barton : > Revision: 36811 > > http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36811 > Author: campbellbarton > Date: 2011-05-21 08:56:37 + (Sat, 21 May 2011) > Log Message: > --- > view3d function naming, no functional changes. > It s

Re: [Bf-committers] [Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36779] trunk/blender/source/blender/ blenkernel/intern/fcurve.c: modify fcurve evaluation for bool/enum/ int values.

2011-05-21 Thread Daniel Salazar - 3Developer.com
- Booleans don't round like ints (below 1.0 are false) - Negative numbers also evaluate to false, this means if you have a sine wave it will give predictable true/false when crossing the 1.0 value no matter the amplitude. double checked and driven booleans work the same way. I think that's perfec