Added ghost object during slider manipulation

This commit is contained in:
Mark Mine 2003-10-16 02:04:17 +00:00
parent a9aaed8d15
commit 1838d8fcbb

View File

@ -28,7 +28,7 @@ class LevelMgr(Entity):
attribs = ( attribs = (
('cogLevel', 0, 'int', {'min':0, 'max':11}), ('cogLevel', 0, 'int', {'min':0, 'max':11}),
('cogTrack', 'c', 'choice', {'choiceSet':['c','s','l','m']}), ('cogTrack', 'c', 'choice', {'choiceSet':['c','s','l','m']}),
('modelFilename', None, 'modelpath'), ('modelFilename', '', 'bamfilename'),
) )
class EditMgr(Entity): class EditMgr(Entity):
@ -80,9 +80,9 @@ class CutScene(Entity):
('pos', Point3(0,0,0), 'pos'), ('pos', Point3(0,0,0), 'pos'),
('hpr', Vec3(0,0,0), 'hpr'), ('hpr', Vec3(0,0,0), 'hpr'),
('startStopEvent', 0, 'entId', {'output':'bool'}), ('startStopEvent', 0, 'entId', {'output':'bool'}),
('effect', 'irisInOut'), ('effect', 'irisInOut', 'choice', {'choiceSet':['nothing','irisInOut','letterBox']}),
('motion', 'foo1'), ('motion', 'foo1', 'choice', {'choiceSet':['foo1']}),
('duration', 5.0), ('duration', 5.0, 'float'),
) )
class BarrelBase(Nodepath): class BarrelBase(Nodepath):