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
2005-02-12Update to the MSVC7 project files (vcproj) for Blender's internal librariesJoseph Gilbert
- set build_install_all as the default project (if you give me a quarter ill tell you how :) - set SoundSystem to it's proper dependencies - updated those silly silly unix path separators - set project warning levels to something not so noisy
2005-02-11Little warming-up getting-feet-wet coding project. :)Ton Roosendaal
Much wanted feature, to have paths with children having fixed distance offsets from each other, for example to animate a train with wagons. Solved it with Path option (Editing buttons curve) "PathDist Offs" which interprets time-offsets of children as blender-unit offsets. The entire animation system still works, but offsets are calculated based on distance, even with a CurvePath without motion (speed curve horizontal). http://download.blender.org/demo/test/pathdist.blend Thanks to Bassam for kicking my ass!
2005-02-09BPython:Willian Padovani Germano
- applied Campbell Barton's patch for access to Oops location and selection of materials, mesh data and objects, slightly modified. Thanks, Campbell; - got rid of warnings in many files, hopefully not introducing any other during the process. Mostly this was done: 1) new EXPP_incr_ret_True/False functions were added and used instead of "Py_INCREF(Py_True/False); return Py_True/False;". Currently at least the functions use the fact that PyTrue/False == 1/0 and use 1 and 0 to avoid the warnings. 2) Filling of certain types structs got 0's added for all not defined data and methods. This is surely Python version specific, since these structs can change size and content at each major version number Python update.
2005-02-09BPython:Willian Padovani Germano
- NMesh: made nmesh.update accept an optional 'vertex_shade' param to init vcols with shading info, like when you enter vpaint mode or press the relevant "make" button for a mesh without vcols. This is still a test, the functionality was requested by Manuel Bastioni for the SSS script they are working on: http://www.dedalo-3d.com/index.php?filename=SXCOL/makehuman/articles/subsurface_scattering_in_python.html - sys: made makename() accept files with max FILE_MAXDIR+FILE_MAXFILE name length, should fix #2192. Was only FILE_MAXFILE, a mistake; - Image: added .setFilename(), contributed by Campbell Barton; - Camera: added camera.get/setScale for the new param added by Ton for ortho cameras. Requested by Jean-Michel Soler for the Texture Baker script; - related doc updates.
2005-02-08Bug fix #2220Ton Roosendaal
Another fix related to improved preview drawing (shade context buttons), it didn't update glViewPort and glScissor correctly, causing the buttons next to the preview-rect not to be offset win the window matrix anymore.
2005-02-08Accidentally committed drawing editmode disregarding layer state. BroughtTon Roosendaal
back to how it always worked.
2005-02-05Parkinson bug! A & accidentally became &&...Ton Roosendaal
Error caused exceptions for ortho render to be active always... making some frontfaces and backfaces mixupped.
2005-02-03BPython:Willian Padovani Germano
- NMesh: added face.sel and face.hide attributes to NMFaces, to set / get selection and visibility state of faces as they appear in edit mode. - doc updates, including the right fix to two edge related methods, thanks to Stephane Soppera for pointing it (my fault, Stephane).
2005-02-03support for new SDL build in makefiles and scons for Os XJean-Luc Peurière
2005-02-02Fixed error in having Ztransp rendered in back of normal solid faces. WasTon Roosendaal
caused by changing definition of OSA pixel structs 3 weeks ago. (result: AA looked bad). Thanks phase for pointing at this.
2005-02-02Fixed typo Latice...Kent Mein
Kent
2005-02-02BPython:Willian Padovani Germano
- Fix related to bug #2157: crash in Blender.Image.image.reload() method. "G.sima" was not being checked for validity. Fix by Joilnen B. Leite (pidhash). Thanks! http://projects.blender.org/tracker/?func=detail&atid=125&aid=2157&group_id=9 - Added optional argument to Blender.Object.object.getData() method: getData(only_name = True) or (only_name = 1) or (1) will return only the obdata name, not a wrapper for the given struct. This is a test based on a request by Campbell Barton who submitted code for his proposed .getDataName() method (thanks!). - doc updates and small fixes.
2005-01-31Bug found by Bassam; in certain occasions reading a file calls setscreen()Ton Roosendaal
without the (ugly) global curarea being set. Fixed the crash in his sample by nicely passing on 'current area' as argument.
2005-01-31Doing the hotkey modifiers for select non-manifold the Ton way.Chris Want
2005-01-30 - updated MSVC 6 projectfiles.Simon Clitherow
- removed 'using namespace std;' from SCA_Joystick.h (gave compile error on VC6).
2005-01-30Bug fixes;Ton Roosendaal
#2187: Append to active layer now uses the real active layer #2191: Stars didnt show up correctly in envmap render #2194: Startfame > Endframe in anim render crashed (now it gives error)
2005-01-30Bug fix (from own collection)Ton Roosendaal
After using clip-safe pixeldraw from glutil.c (preview render, bg picture) the current viewport had to be re-set. Not doing so caused a 1 pixel offset for live updates buttons (on mouse over)
2005-01-30Fixed old annoyance; enabling true Ortho render in Blender.Ton Roosendaal
It used to be a simple hack, scaling lens with 100, and moving the camera to the back with an equivalent amount. Because of the hack, making it 100% compatible with older files I could not achieve (yet?). To help reminding users, I've added a print when reading old files with Ortho cameras. Full description of how it works can be found here; http://www.blender3d.com/cms/Render_changes.515.0.html
2005-01-30Correcting the logic of the hotkey modifiers for selectChris Want
non-manifold. If you want it so all three modifiers are needed (e.g. ctrl-alt-shift-MKEY) use: if ( !(~G.qual & (LR_SHIFTKEY | LR_ALTKEY | LR_CTRLKEY)) ) instead of if ( G.qual & (LR_SHIFTKEY | LR_ALTKEY | LR_CTRLKEY) ) (which really allows any modifier, alone or in combination, to work).
2005-01-25Fix to get gcc 3.4.1 with scons working again.Kent Mein
2005-01-25bugfix: #2117 Overflow in Armature.Bone.setName()Stephen Swaney
contributed by Joilnen B. Leite (pidhash).
2005-01-24Fixed the Makefiles so the Joystick stuff works.Kent Mein
Kent
2005-01-24Added a color picker and a 'Set VertCol' button to the Texture face panel,Brecht Van Lommel
so the color of faces can be set in Uv Face Select Mode. Patch provided by Carsten Wartmann (moved the buttons, and removed the rgb sliders).
2005-01-24Added color filtering for raytrace transparency.Ton Roosendaal
http://www.blender3d.org/cms/Transparent_filtering.514.0.html Choice was for using a single (new) filter value and have it working OK with existing alpha.
2005-01-23fix some undeclared parametersStephen Swaney
2005-01-23Separated some variable declarations from the code, for wider compiler support.Yann Vernier
2005-01-23Changes Mathutils.Vector() to be less picky about its argument(s).Yann Vernier
2005-01-23This should make the Texture stype attribute work for EnvMaps.Yann Vernier
2005-01-23Make the KX_PolygonMaterial Python member variables writable.Kester Maddock
2005-01-23Don't delete the Python Controller's private dictionary between frames.Kester Maddock
2005-01-23Added Joystick sensor (from snailrose)Kester Maddock
2005-01-23Don't fail on mesh objects with no faces.Kester Maddock
2005-01-22BPython:Willian Padovani Germano
- Stephane Soppera added long missed support for edge data in Blender.NMesh + related doc; - Michael Reimpell improved script registration (fixes bug report #2160) and the file and image selectors in Blender.Window (improved with suggestions from Yann Vernier). They now suppport methods as callbacks; - World.get/setMode were not registered, so could not be directly called (reported by Ken Hughes). Still needs some work to improve things, including docs. Scripts: - Jean-Michel Soler updated his texture baker based on input from Appolux; - Campbell and Jean-Michel improved the bvh importer: faster, better float units scaling (by Campbell); supports Poser 3.01 files (by jms). Thanks guys!
2005-01-21fixed animations using jpeg (bug # 2166)Kent Mein
Basically the deal was on the last fix (multiple opens/closes to a filehandle) I changed the return values to match other image formats 0=fail and 1 = good (was 1=fail 0=good before) I Didn't update the animation code to see this so it was thinking the first frame failed because it was looking for the old return code. Kent
2005-01-21Modified interface texture font support, which should work nicely with the ↵Rob Haarsma
freshly added bFTGL library. Also removed some redundant #include's on some files.
2005-01-21Modified FTGL for proper texturefont support.Rob Haarsma
Also fixed msvc6 (release only) projectfile to build and output correctly.
2005-01-21Added some extra comments about creating a new image format.Kent Mein
Kent
2005-01-21Bug fix 2116Ton Roosendaal
Area lights with "Noise" dithering only worked for first area light, the other ones then used wrong table... bug since area lights are in blender.
2005-01-21Bug 2162Ton Roosendaal
Current cvs bug; the texture 'crop' lines were not drawn using correct Panel/Window transform. Simple fix.
2005-01-21Added bFTGL to extern and updated the Makefiles. I'm guessing there willKent Mein
need to be tweaks but it seems to work on my linux box. I haven't touched any of the other build systems so those will need to be done. We probably don't need all of this stuff but I figured better to add a little too much then to little. Kent
2005-01-20Reading .blend from runtime closed file handle twice... seemed to crash inTon Roosendaal
windows? Weird, was a commit from april last year (Nathan) and nobody has reported errors. (bug report 2155)
2005-01-19Added experimental option to use GL textured interface fonts.Rob Haarsma
Set preferred method in userprefs->language & font. Kinda requested by Kaito, i'm sure he regrets after seeing my code changes. This commit includes a patch provided by Jacques Baurain, which seemed nescessary to handle font sizing properly. Thank you !
2005-01-19Melchior FRANZ's patch to allow the normal +- to work with border select.Kent Mein
Currently it doesn't conflict with anything and I think it makes sense. Kent
2005-01-19Jacques patch to get things compiling on windows.Kent Mein
basically it returns NULL for two functions that had their entire body commented out. Kent
2005-01-18Using halo (particle) render with OSA and gauss had error.Ton Roosendaal
Removed it in OSA from special thread loop now, making it unthreaded but render OK. Main reason; subpixel-based adding with gauss doent work for halos yet. Unified render does that though, but result is just filter, no real subpixel.
2005-01-18Render lens flare works again. Didn't work due to wrong value for zbufferTon Roosendaal
passed on (zbuffer values changed with previous commit) Also fixed previewrender for lens flare.
2005-01-18The non scons specific stuff for bug tracker bug #2131Kent Mein
Basically removed #include <iostream.h> from some files that didn't need it (and I'm assuming it caused problems) I'll leave the scons stuff for someone else to look at since I don't really use it. Kent
2005-01-17Use the default windows assert for VisualCKester Maddock
Update Scons
2005-01-16remove gcc compiler error using -pedantic flag:Stephen Swaney
comma at end of enumerator list If this change causes problems, feel free to back it out. I am trying to get gcc to complain about mixed declarations and code since that breaks on platforms that only support C89/C90.
2005-01-16Fixed #define for snprintf on win32Simon Clitherow