Update of /cvsroot/gcblue/gcb_wx/src/sim
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11381/src/sim
Modified Files:
gcb.cpp tcPlatformObject.cpp
Log Message:
Simple explosion effect using osgParticle::ExplosionEffect
Index: tcPlatformObject.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/sim/tcPlatformObject.cpp,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -d -r1.54 -r1.55
*** tcPlatformObject.cpp 29 Jul 2005 02:35:53 -0000 1.54
--- tcPlatformObject.cpp 19 Nov 2005 19:27:47 -0000 1.55
***************
*** 440,443 ****
--- 440,444 ----
}
+ model->AddExplosion(osg::Vec3(0, 0, 0));
}
Index: gcb.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/sim/gcb.cpp,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** gcb.cpp 14 Sep 2005 01:33:24 -0000 1.19
--- gcb.cpp 19 Nov 2005 19:27:47 -0000 1.20
***************
*** 109,125 ****
*
*/
! void GcbApp::DoMessage(WXMSG *pMsg)
! {
! current_msg = pMsg;
! MSG* msg = (MSG*)pMsg;
!
! if (msg->message == WM_LBUTTONDOWN)
! {
! int i = 0;
! i++;
! }
!
! wxApp::DoMessage(pMsg);
! }
/**
--- 109,125 ----
*
*/
! //void GcbApp::DoMessage(WXMSG *pMsg)
! //{
! // current_msg = pMsg;
! // MSG* msg = (MSG*)pMsg;
! //
! // if (msg->message == WM_LBUTTONDOWN)
! // {
! // int i = 0;
! // i++;
! // }
! //
! // wxApp::DoMessage(pMsg);
! //}
/**
|