From 1838d8fcbb7837827abd5bc14a4638302fc5be6c Mon Sep 17 00:00:00 2001 From: Mark Mine Date: Thu, 16 Oct 2003 02:04:17 +0000 Subject: [PATCH] Added ghost object during slider manipulation --- direct/src/level/EntityTypes.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/direct/src/level/EntityTypes.py b/direct/src/level/EntityTypes.py index 2688b94b6e..f4abf4e412 100755 --- a/direct/src/level/EntityTypes.py +++ b/direct/src/level/EntityTypes.py @@ -28,7 +28,7 @@ class LevelMgr(Entity): attribs = ( ('cogLevel', 0, 'int', {'min':0, 'max':11}), ('cogTrack', 'c', 'choice', {'choiceSet':['c','s','l','m']}), - ('modelFilename', None, 'modelpath'), + ('modelFilename', '', 'bamfilename'), ) class EditMgr(Entity): @@ -80,9 +80,9 @@ class CutScene(Entity): ('pos', Point3(0,0,0), 'pos'), ('hpr', Vec3(0,0,0), 'hpr'), ('startStopEvent', 0, 'entId', {'output':'bool'}), - ('effect', 'irisInOut'), - ('motion', 'foo1'), - ('duration', 5.0), + ('effect', 'irisInOut', 'choice', {'choiceSet':['nothing','irisInOut','letterBox']}), + ('motion', 'foo1', 'choice', {'choiceSet':['foo1']}), + ('duration', 5.0, 'float'), ) class BarrelBase(Nodepath):