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

epy_docgen.sh « PyDoc « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd30256f42fad749ee9f50525b4113890413c467 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# epy_docgen.sh
# generates blender python doc using epydoc
# requires epydoc in your PATH.
# run from the doc directory containing the .py files
# usage:  sh epy_docgen.sh

# set posix locale so regex works properly for [A-Z]*.py
LC_ALL=POSIX

epydoc --debug -v  -o BPY_GE --url "http://www.blender.org" --top API_intro \
 --name "Blender GameEngine" --no-private --no-sourcecode --inheritance=included \
 *.py \
 ../../../source/blender/python/api2_2x/doc/BGL.py \
 ../../../source/blender/python/api2_2x/doc/Mathutils.py \
 ../../../source/blender/python/api2_2x/doc/Geometry.py