Home
last modified time | relevance | path

Searched refs:particleModel (Results 1 – 9 of 9) sorted by relevance

/NW4C-1.2.23/demos/Nw4cDemo/sources/
DSmParticle.cpp46 void SmParticle::AddParticleModel( nw::gfx::ParticleModel* particleModel ) in AddParticleModel() argument
48 bool isPushed = m_ParticleModelInstArray.push_back( particleModel ); in AddParticleModel()
/NW4C-1.2.23/sources/libraries/gfx/
Dgfx_MeshRenderer.cpp130 ParticleModel* particleModel = static_cast<ParticleModel*>(model); in RenderMesh() local
131 NW_NULL_ASSERT(particleModel); in RenderMesh()
133 ParticleSet* particleSet = particleModel->GetParticleSets(mesh.GetShapeIndex()); in RenderMesh()
259 ParticleModel* particleModel = static_cast<ParticleModel*>(model); in RenderParticleShape() local
260 NW_NULL_ASSERT(particleModel); in RenderParticleShape()
262 ParticleSet* particleSet = particleModel->GetParticleSets(shapeIndex); in RenderParticleShape()
266 ParticleShape* particleShape = particleModel->GetParticleShapes(shapeIndex); in RenderParticleShape()
Dgfx_ParticleUtil.cpp36 ParticleModel* particleModel = ut::DynamicCast<ParticleModel*>(*i); in FindParticleSet() local
37 if (!particleModel) { continue; } in FindParticleSet()
39 for (int j = 0; j < (int)particleModel->GetParticleSetsCount(); ++j) in FindParticleSet()
41 ParticleSet* itParticleSet = particleModel->GetParticleSets(j); in FindParticleSet()
/NW4C-1.2.23/include/nw/gfx/
Dgfx_SceneTraverser.h82 virtual void VisitParticleModel(ParticleModel* particleModel);
Dgfx_ISceneVisitor.h135 virtual void VisitParticleModel(ParticleModel* particleModel) = 0;
Dgfx_SceneContext.h892 void PushParticleModel(ParticleModel* particleModel) in PushParticleModel() argument
894 bool isPushed = m_ParticleModels.push_back(particleModel); in PushParticleModel()
/NW4C-1.2.23/include/nw/demo/
Ddemo_Particle.h555 nw::gfx::ParticleModel* particleModel = in ResetParticle() local
558 particleModel->ForeachParticleSet(nw::gfx::ParticleSetsClear()); in ResetParticle()
559 particleModel->ParticleAnimFrameController().SetFrame(0); in ResetParticle()
/NW4C-1.2.23/demos/Nw4cDemo/include/
DSmParticle.h47 void AddParticleModel( nw::gfx::ParticleModel* particleModel );
/NW4C-1.2.23/demos/gfx/ParticleLowLayerDemo/sources/
DParticleLowLayerDemo.cpp362 nw::gfx::ParticleModel* particleModel = in BuildResources() local
364 for (int i = 0; i < particleModel->GetParticleSetsCount(); ++i) in BuildResources()
366 s_ParticleSets.push_back(particleModel->GetParticleSets(i)); in BuildResources()