Home
last modified time | relevance | path

Searched refs:s_RandomVelocityScale (Results 1 – 2 of 2) sorted by relevance

/CTR-SDK-4.2.7-SampleDemos/common/libraries/demo/Body/
Ddemo_Particle.cpp30 nn::math::Vector3 Particle::s_RandomVelocityScale(1.0f, 0.0f, 1.0f); member in demo::Particle
109 …m_Velocity.x = s_RandomVelocityScale.x * (static_cast<f32>(::std::rand() % 256) / 256.0f - 0.5f) +… in Spawn()
110 …m_Velocity.y = s_RandomVelocityScale.y * (static_cast<f32>(::std::rand() % 256) / 256.0f - 0.5f) +… in Spawn()
111 …m_Velocity.z = s_RandomVelocityScale.z * (static_cast<f32>(::std::rand() % 256) / 256.0f - 0.5f) +… in Spawn()
/CTR-SDK-4.2.7-SampleDemos/common/include/demo/Body/
Ddemo_Particle.h72 static nn::math::Vector3 s_RandomVelocityScale; variable