import bpy
import sys
import os
dir = os.path.dirname(bpy.data.filepath)
if not dir in sys.path:
sys.path.append(dir )
#print(sys.path)
import cityFunctions
# this next part forces a reload in case you edit the source after you first start the blender session
import importlib
importlib.reload(cityFunctions)
# this is optional and allows you to call the functions without specifying the package name
from cityFunctions import *
|
Blender python API quick-start
Syntax highlighting by Pygments.