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
diff options
context:
space:
mode:
authorWillian Padovani Germano <wpgermano@gmail.com>2004-11-07 19:31:13 +0300
committerWillian Padovani Germano <wpgermano@gmail.com>2004-11-07 19:31:13 +0300
commitc702b237d5f9a542c1d327e1c87a5b7e7ec81590 (patch)
tree99347ced1b1260843aff9c6f70670a2a9d45f7f8 /release/scripts/ac3d_import.py
parent23e8b982288699258c4bf4d7f5464f968b98d5cf (diff)
Scripts:
-- adding help_browser.py to show help for installed scripts; -- updated scripts to include basic doc info to be shown with above script: script authors can / will / should update with more info, of course; -- updated some scripts to newer versions: disp_paint, fixfromarmature, hotkeys, etc.
Diffstat (limited to 'release/scripts/ac3d_import.py')
-rw-r--r--release/scripts/ac3d_import.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/release/scripts/ac3d_import.py b/release/scripts/ac3d_import.py
index 82bc1b2335b..07e8540798a 100644
--- a/release/scripts/ac3d_import.py
+++ b/release/scripts/ac3d_import.py
@@ -7,6 +7,33 @@ Group: 'Import'
Tip: 'Import an AC3D (.ac) file.'
"""
+__author__ = "Willian P. Germano"
+__url__ = ("blender", "elysiun", "AC3D's homepage, http://www.ac3d.org",
+ "PLib 3d gaming lib, http://plib.sf.net")
+__version__ = "2.34 07/26/04"
+
+__bpydoc__ = """\
+This script imports AC3D models into Blender.
+
+AC3D is a simple and affordable commercial 3d modeller also built with OpenGL.
+The .ac file format is an easy to parse text format well supported,
+for example, by the PLib 3d gaming library (AC3D v3.x).
+
+Supported:<br>
+ UV-textured meshes with hierarchy (grouping) information.
+
+Missing:<br>
+ Support for AC3D 4's crease tag (simple, will be added soon).
+
+Known issues:<br>
+ None.
+
+Notes:<br>
+ Check script's source code for options that can be tweaked (using Blender
+empties to emulate AC3D's grouping info and setting a default folder for
+textures, for the case of wrong paths in the .ac file(s).
+"""
+
# $Id$
#
# --------------------------------------------------------------------------