ImportSceneParticle.cpp
上传用户:xhbjoy
上传日期:2014-10-07
资源大小:38068k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #include "StdAfx.h"
  2. #include ".importsceneparticle.h"
  3. ImportSceneParticle::ImportSceneParticle(void)
  4. {
  5. }
  6. ImportSceneParticle::ImportSceneParticle(CString particlefilename,float px,float py,float pz,
  7. float pitchddd,float rollddd,float yawddd,float scalex,float scaley,float scalez)
  8. {
  9. this->particlefilenameddd=particlefilename;
  10. this->pitchddd=pitchddd;
  11. this->pxddd=px;
  12. this->pyddd=py;
  13. this->pzddd=pz;
  14. this->rollddd=rollddd;
  15. this->scalex=scalex;
  16. this->scaley=scaley;
  17. this->scalez=scalez;
  18. this->yawddd=yawddd;
  19. }
  20. ImportSceneParticle::~ImportSceneParticle(void)
  21. {
  22. }