Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-29style cleanup: whitespace / commasCampbell Barton
2012-04-28Plugin system:Thomas Dinges
* Remove RNA, Operator and UI for Texture and Sequence plugins. Since 2.5x no effort has been done to bring that back, so there is simply no reason in keeping that code and the UI for that ;-) * Low Level code still exists and is unchanged.
2012-04-22style cleanup: commentsCampbell Barton
2012-03-24style cleanup: follow style guide for formatting of if/for/while loops, and ↵Campbell Barton
else if's
2012-03-18Code style edits (mostly spliting long lines, and removing trailing spaces).Bastien Montagne
Note about long lines: I did not touch to two pieces of code (because I don’t see any way to keep a nicely formated, compact code, with shorter lines): * The node types definitions into rna_nodetree_types.h * The vgroup name functions into rna_particle.c
2012-03-06style cleanup, brackets in else/if, some indentation.Campbell Barton
2012-03-06Code cleanup in rna files (huge, higly automated with py script).Bastien Montagne
Addresses: * C++ comments. * Spaces after if/for/while/switch statements. * Spaces around assignment operators.
2012-03-03option for the Armature Actuator to change the influence of a bone constraint.Dalai Felinto
Also adds DampedTrackTo to the list of supported constraints in the BGE Test file: http://www.pasteall.org/blend/11715 Patch developed as part of a project to NF-UBC Nereus Program. Development time 'sponsored' by the project. www.nereusprogram.org
2012-01-11bge camera actuator: -X and -Y axisDalai Felinto
The camera actuator only allows to look the object from its front face. Given that Blender takes -Y as the default forward orientation, the current functionality doesn't let a camera to track an actor from behind. This patch allows for -X and -Y axis tracking. This way a camera over the shoulders of a character is possible (without resorting to rotate the mesh/armature original orientation. - patch reviewed by Campbell Barton, thanks
2011-12-11SCA: Scene Actuator text errorDalai Felinto
copy+paste bug when creating the rnas
2011-11-19More UI messages fixes and tweaks (found while translating in french).Bastien Montagne
2011-11-17Tweaks and fixes to UI messages, found while translating in french.Bastien Montagne
2011-11-04Fix #29024: Logic Bricks allow same name for multiple bricksSergey Sharybin
Check for unique name when setting name for logic bricks.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-20misc editsCampbell Barton
- rename define DISABLE_SDL --> WITH_SDL (which was already used in some places) - blenders interation preset was using orbit rather then turntable 3d view preference (different from factory defaults). - tagged some unused rna args.
2011-09-21check that descriptions dont end with a '.', for non release builds.Campbell Barton
this is annoying for translators so rather then correct along the way which gives merge conflicts for branches - print a complaint message.
2011-09-19/blender/makesrna: Removed final points in UI strings and messages.Bastien Montagne
Plus a few splits of very long lines…
2011-09-17Recast/detour: fix some property enum identifiers to follow conventions.Brecht Van Lommel
2011-09-11Game Engine:Thomas Dinges
Fixed some more abbreviations in the UI.
2011-09-07svn merge -r 37306:39975 ↵Benoit Bolsee
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-09-05Code cleanup: warning fixes.Brecht Van Lommel
2011-08-16BGE Animations: Increasing the max layer count to 8 as per a user request. ↵Mitchell Stokes
Also, layer checks were checking for values between 0 and MAX_ACTION_LAYERS when they should have been checking for values between 0 and MAX_ACTION_LAYERS - 1.
2011-07-03BGE Animations: Adding in layer weights to allow for layer blending.Mitchell Stokes
2011-06-24BGE Animations: Shape Action Actuators are now converted to Action Actuators ↵Mitchell Stokes
and new Shape Action Actuators cannot be created.
2011-06-16BGE_Animations: Removing the Fcurve Actuator as a possible actuator type, ↵Mitchell Stokes
but keeping a lot of the code around as reference.
2011-06-16BGE Animations: Adding the ipo flag options to the action actuator. This ↵Mitchell Stokes
still needs more testing.
2011-06-14Merge with trunk r37475.Joerg Mueller
2011-06-13BGE Patch: [#27425] Allow to change the damping of the camera actuatorDalai Felinto
########## original name: "Allow to change the strenght of the "go behind" constraint of the camera actuator" The camera actuator is an actuator that drive the camera to follow an object, with a set of constraint. Currently, when the object followed rotate on himself (like a person, or an helicopter), the camera is really slow to go behind (at least 10 seconds). This patch gives the UI to tweak the strenght of the 'go behind'[named damping] constraint. ########### epydocs (rst) updated too
2011-06-11BGE Animations: Adding a layer option to Action actuators.Mitchell Stokes
2011-06-05synched with trunk at revision 37212Nick Samarin
2011-06-04Merge with trunk revision 37149.Joerg Mueller
2011-06-03BugFix: [#27556] Replace mesh for gfx in "Edit Object" actuator act ↵Dalai Felinto
illogically + other booleans that are flipped Now I think we are all good. We still have a few actuators that were using TOGN before but that I didn't make as negative_boolean. All fixed now: - parent actuator - edit object actuator - action actuator - shape actuator
2011-06-01BGE Animations: Removing guards that prevent the action actuator from being ↵Mitchell Stokes
used on non-armatures. Object animation works through this actuator now too. :)
2011-05-26add the property as an argument to enum item functions, not used yet but ↵Campbell Barton
needed for dynamic python enums.
2011-05-17synched with trunk at revision 36569Nick Samarin
2011-04-21whitespace only, no functional change mixed tabs/spaces --> tabs.v2.57aCampbell Barton
2011-04-11patch [#26861] Spelling, Typos, and GrammarCampbell Barton
- also fix own bad assert from yesterday & remove testing cmake print.
2011-03-22Logic rna: actuator --> renaming Motion Actuator to 'MOTION' and tooltip fixDalai Felinto
internally it's still called Object Actuator, but for the user at least it's better motion.
2011-03-03BGE: Material Force Field renaming + reorganizationDalai Felinto
the old FH setting was blended with the other physics settings (friction and elastic) Also in the Physics panel it was saying "Use Material Physics" but the button is only for Force Field. Since I was here I decided to change the Constraint FH ui name from Fh to Force. I don't think users really understand what FH is (I for once don't). Thanks to Carsten Wartmann for pointing that out.
2011-03-02Logic UI: reverting back the PROP_ANGLE propsDalai Felinto
The Logic Bricks that use angles (Radar Sensor and Constraint Actuator) do so in degree. Reverting for the time being. Ideally we want to make them to use radians internally (that requires at least a doversion and a convert from radians to degree in BGE Converter routine). If someone feels like helping on that, please go ahead.
2011-02-27doxygen: blender/makesrna tagged.Nathan Letwory
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-16BGE: Action and ShapeKey Actuator PingPong playmode.Dalai Felinto
I have no idea why this hasn't been implemented before (the DEFINES were even there already). But since the Ipo (Fcurve) Actuator supports it I don't see why Action and ShapeKey shouldn't. More than a new feature or a bugfix this is actually a step forward into unifying them.
2011-02-16synched with trunk at revision 34793Nick Samarin
2011-02-11BGE: frame start/end in action/fcurves/shapekey to support floatsDalai Felinto
after discussion over the mailing-list it seems that it really makes no sense to restrict that. Specially since we have the "Property" playback mode that usually will be a float. Since there is no need for do_version or whatoever I don't see a problem. Any Thoughts? Maube to allow it only through the Python API?
2011-02-07Logic UI: Game Actuator options renamingDalai Felinto
After talking with Ton Roosendaal we agreed on making those changes. I wonder if we should go for "Start Game" instead of "From File". But Space is not a constraint here so be it.
2011-02-07Logic UI: Armature Actuator + general Captalizing 1st letter of UI textDalai Felinto
- Armature Actuator now only shows the "Secondary Target" option when the Bone Constraint supports it (IK only now). -- that may be overkill I don't know. It shouldn't slow down the UI considerably, so it should be fine. Easy to revert if needed though. - renaming things such as "Start frame" to "Start Frame"
2011-02-05Logic UI: multiple fixes on Constraint ActuatorDalai Felinto
1) damping factor is not percentage (it's in frames, who would know that) 2) angles as degrees (cleaning the tooltips for those too) 3) setting Direction to None when changing from Loc and Fh Consts to Ori - negative axis is not supported in Ori Const. Buggy since ever (2.49).
2011-01-31Logic UI: Servo Control (Motion/ObjectActuator) default options + camera ↵Dalai Felinto
actuator tweak In 2.49 we had this implemented in the logic_windows.c. I think I skipped this when porting the new UI. I probably didn't know how to do it back then or was waiting for something. Anyhoo, it's all good now. For the records, the Logic Bricks that I haven't gone over to make sure everything is 100% are: Filter 2D, Constraints and Animation (action, shapekey, fcurve) I'm going over them this week, so the Logic Bricks are close to receive a "revisited review check-up" ISO 9000 :)
2011-01-23Logic UI: ParentActuator fix + PropertyActuator tooltip improvementDalai Felinto
ParentActuator: sub options only available when mode==setParent + deactive ghost option when compound is true (isntead of saying that in the tooltip) PropertyActuator: I never knew that you could pass a property name to the Add and Assign options of the Property Actuator. Where it's by design or a side effect is cool. And a tooltip explaining that does help.