From 59a2aba71d11136dd44c86001232d45269b5fbc5 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 21 Dec 2012 00:33:03 +0000 Subject: [PATCH] egg module should include ptloader --- direct/src/p3d/panda3d.pdef | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/direct/src/p3d/panda3d.pdef b/direct/src/p3d/panda3d.pdef index 0f02c1eb9a..9e9f49800a 100755 --- a/direct/src/p3d/panda3d.pdef +++ b/direct/src/p3d/panda3d.pdef @@ -241,17 +241,20 @@ class audio(package): class egg(package): # This package contains the code for reading and operating on egg - # files. Since the Packager automatically converts egg files to bam - # files, this is not needed for most Panda3D applications. + # files and other model files. Since the Packager automatically + # converts egg files to bam files, this is not needed for most + # Panda3D applications. config(display_name = "Panda3D egg loader") require('panda3d') file('libpandaegg.dll', required = True) + file('libp3ptloader.dll', required = True) file('egg.prc', extract = True, text = """ plugin-path $EGG_ROOT load-file-type egg pandaegg +load-file-type p3ptloader """) class ode(package):