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
2008-08-08-> Fix for warnings in FLT exporter and Palette ManagerGeoffrey Bantle
Removed buffer overflow masking warnings from the FLT exporter and Palette Manager.
2008-08-07-> Slight tweak to FLT exporterGeoffrey Bantle
FLT files written by the FLT exporter would reference external files (other FLT files, texture maps, ect) with standard backslash seperators on win32. However, many tools that deal with FLT files expect directory seperators to always be forward slashes regardless of platform.
2008-05-15-> FLT import bug (loose vertices)Geoffrey Bantle
New faceweld code broke the import of meshes with loose vertices. Also added exception handling to the importer and exporter so that UI doesnt quite when errors are encountered. Instead traceback is printed to stderr and control returns to the script UI
2008-05-14-> FLT Export bugfixGeoffrey Bantle
Export of open faces on export was dropping the last vertex. Also removed recursion from function in order to make it safe for large polygons.
2008-04-23added ipo script template from blenderartists forTe, made scripts refresh on ↵Campbell Barton
load factory settings and replaced elysiun with blenderartist.org in headers
2008-04-08-> Fix for last commit on FLT exporterGeoffrey Bantle
Forgot to change some dictionary keys in source which would break export. Fixed
2008-03-29-> FLT I/O: UI now undo safeGeoffrey Bantle
Both the FLT importer and exporter now store and retrieve their settings from the blender python registry making them safe for use with global undo.
2008-03-28-> FLT I/O: Hierarchy order fixed on exportGeoffrey Bantle
Hierarchy was getting reversed on import/export cycle for FLT files. Fixed now.
2008-03-28-> Extension Node attribute support for FLT I/OGeoffrey Bantle
Extension node attributes are now read and stored as ID props for the following Node types: -Object Nodes -Group Nodes -LOD Nodes -DOF Nodes -Inline Light Point Nodes The extension data is written back out on export. Note that this commit only adds support for attribute extensions. Completely new node types via the extension record are still unsupported.
2008-03-07-> Light points vert normal bug and DOF fixesGeoffrey Bantle
If light points are not given a unit normal they will not show up correctly in some applications. Further DOF nodes were not being exported correctly.
2008-03-05-> Short names fixGeoffrey Bantle
Short names (less than 8 characters) were not getting exported correctly for blender objects with no FLT props attached
2008-01-09-> Fix for billboard facesGeoffrey Bantle
Faces with billboard render (axis with alpha) were not being preserved on import/export. Fixed
2007-11-28-> Fix for FLT exportGeoffrey Bantle
Silly mistake on FLT export meant that when copying textures no check was done to see if the file being copied existed or not. Fixed
2007-11-22-> Updated FLT scriptsGeoffrey Bantle
Blender FLT I/O scripts have been updated to have more features.In addition several utility scripts/applets have been added to aid in working with FLT databases within Blender. Documentation can be found here: http://wiki.blender.org/index.php/Scripts/Manual/Import/openflight_flt http://wiki.blender.org/index.php/Scripts/Manual/Export/openflight_flt http://wiki.blender.org/index.php/Scripts/Manual/FLTools
2007-08-28This commit fixes up a bunch of svn properties to hopefully make things a ↵Kent Mein
little nicer for everyone. Patch provied by gsrb3d bug tracker #7061 Kent
2007-02-14Added GPL Headers to some of my scipts that were missing it. also changed ↵Campbell Barton
the header of a few others. Only code change is cookie cut from View now only uses 3d curves to cut.
2006-12-28Mech cleanup use new edge_keysCampbell Barton
continual script stuff, minor stuff.. fix for bad return in group. Added back group.objects.append/remove but print deprectaed warning. also some epydoc changes.
2006-12-25modified scripts from using older/depricated Python API commands, deprecated ↵Campbell Barton
scn.getChildren() in the docs.
2006-01-10removed slow list handelingCampbell Barton
faster vert comparisons replaced spaces for tabs removed unneeded getData() calls general cleanup.
2006-01-10Added openflight import/export- Blight v1.2Campbell Barton